1 Star 0 Fork 0

chris/vue3_h5_frame

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vue.config.js 934 Bytes
一键复制 编辑 原始数据 按行查看 历史
chris 提交于 2023-05-24 15:50 . 自动导入组件
const { VantResolver } = require('unplugin-vue-components/resolvers');
const ComponentsPlugin = require('unplugin-vue-components/webpack');
// 自动按需加载
const AutoImport = require('unplugin-auto-import/webpack')
module.exports = {
devServer: {
open: true,
port: 9900
},
configureWebpack: {
plugins: [
ComponentsPlugin({
dirs: ['src/components', 'src/*/components', 'src/*/*/components'], // 按需加载的文件夹
resolvers: [VantResolver()],
}),
// 自动按需加载
AutoImport({
imports: ['vue', 'vue-router', 'vuex'], // 自动导入
eslintrc: {
enabled: false, // 默认false, true启用。生成一次就可以,避免每次工程启动都生成
filepath: './.eslintrc-auto-import.json', // 生成json文件,eslintrc中引入
globalsPropValue: true,
},
}),
],
},
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/cress/vue3_h5_frame.git
git@gitee.com:cress/vue3_h5_frame.git
cress
vue3_h5_frame
vue3_h5_frame
master

搜索帮助