1 Star 0 Fork 0

霜林/cj-components

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
vue.config.js 1.81 KB
一键复制 编辑 原始数据 按行查看 历史
霜林 提交于 2024-01-04 16:00 . 更新
const path = require('path')
const webpack = require('webpack')
function resolve (dir) {
return path.join(__dirname, dir)
}
// vue.config.js
const vueConfig = {
// 由于修改了src文件夹名称,所以启动vue项目后,会因找不到入口(main.js)而会报错,所以需要重新指定启动入口
pages: {
index: {
// page 的入口
entry: 'examples/main.js',
// 模板来源
template: 'public/index.html',
// 输出文件名
filename: 'index.html'
}
},
configureWebpack: {
plugins: [
// Ignore all locale files of moment.js
new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/)
]
},
// publicPath: '/pda/',
publicPath: process.env.NODE_ENV === 'production' ? '/' : '/',
chainWebpack: (config) => {
config.resolve.alias
.set('@$', resolve('src'))
// const svgRule = config.module.rule('svg')
// svgRule.uses.clear()
// svgRule
// .oneOf('inline')
// .resourceQuery(/inline/)
// .use('vue-svg-icon-loader')
// .loader('vue-svg-icon-loader')
// .end()
// .end()
// .oneOf('external')
// .use('file-loader')
// .loader('file-loader')
// .options({
// name: 'assets/[name].[hash:8].[ext]'
// })
},
css: {
loaderOptions: {
less: {
modifyVars: {
// less vars,customize ant design theme
// 'primary-color': '#F5222D',
// 'link-color': '#F5222D',
// 'border-radius-base': '4px'
},
javascriptEnabled: true
}
}
},
// disable source map in production
productionSourceMap: false,
lintOnSave: undefined,
// babel-loader no-ignore node_modules/*
transpileDependencies: []
}
// preview.pro.loacg.com only do not use in your production;
module.exports = vueConfig
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/atzw1988/cj-components.git
git@gitee.com:atzw1988/cj-components.git
atzw1988
cj-components
cj-components
master

搜索帮助

D67c1975 1850385 1daf7b77 1850385