This commit is contained in:
yzcheng90
2023-01-18 15:28:50 +08:00
parent 7b48b11180
commit 66dc0d1deb
109 changed files with 10000 additions and 0 deletions

31
vue.config.js Normal file
View File

@@ -0,0 +1,31 @@
module.exports = {
productionSourceMap: false,
publicPath: process.env.NODE_ENV === 'production' ? './' : '/',
lintOnSave: false,
devServer: {
open: process.env.VUE_APP_OPEN === 'false' ? false : true, // 自动打开浏览器
host: '0.0.0.0', // 真机模拟,使用
port: process.env.VUE_APP_PORT, // 前台代理端口号
https: false, // https {type: Booleam}
hotOnly: false, // 热更新
proxy: {
// 设置代理
'/gitee': {
target: 'https://gitee.com',
ws: true,
changeOrigin: true,
pathRewrite: {
'^/gitee': '',
},
},
},
},
chainWebpack(config) {
// 移除打包后 index.html 所有打包好的文件都预加载行为
config.plugins.delete('preload');
config.plugins.delete('prefetch');
},
css: {
extract: { ignoreOrder: true },
},
};