vue commit

This commit is contained in:
zvv__666---vvz
2026-04-21 21:23:21 +08:00
commit 0fd6fbefd5
193 changed files with 65688 additions and 0 deletions

62
vue.config.js Normal file
View File

@@ -0,0 +1,62 @@
const path = require('path')
const name = 'Vue Typescript Admin'
const IS_PROD = ['production', 'development'].includes(process.env.NODE_ENV)
module.exports = {
'publicPath': process.env.NODE_ENV === 'production' ? './' : '/', // TODO: Remember to change this to fit your need
'lintOnSave': process.env.NODE_ENV === 'development',
'pwa': {
'name': name
},
'pluginOptions': {
'style-resources-loader': {
'preProcessor': 'scss',
'patterns': [
path.resolve(__dirname, 'src/styles/_variables.scss'),
path.resolve(__dirname, 'src/styles/_mixins.scss')
]
}
},
// 开启代理
devServer: {
host:'0.0.0.0',
public: '0.0.0.0:8888', // 本地的ip:端口号
port: 8888,
open: true,
disableHostCheck:true,
hot:true,//自动保存
overlay: {
warnings: false,
errors: true
},
proxy: {
'/api': {
target: process.env.VUE_APP_URL,
ws: false,
secure: false,
changeOrigin: true,
pathRewrite:{
'^/api':''
}
}
}
},
chainWebpack: (config) => {
config.resolve.symlinks(true) // 修复热更新失效
},
configureWebpack: {
devtool: 'source-map'
},
css: {
// 是否使用css分离插件 ExtractTextPlugin
extract: IS_PROD,
// 开启 CSS source maps?
sourceMap: false,
// css预设器配置项
loaderOptions: {
},
// 启用 CSS modules for all css / pre-processor files.
modules: false,
},
};