Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
This repository doesn't specify license. Please pay attention to the specific project description and its upstream code dependency when using it.
Clone or Download
vue.config.js 384 Bytes
Copy Edit Raw Blame History
xujunpro authored 2022-03-29 12:49 . 初始化
module.exports = {
publicPath: './', //bulid的时候用相对路径
outputDir: 'dist',
assetsDir: 'static',
productionSourceMap: false, //打包的时候不要生成map文件,map文件可用来追踪运行期错误,但也会导致代码泄露
//设置开发用web服务器
devServer: {
port: 8081,
open: false,
proxy: null
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化