12345678910111213141516 |
- module.exports = {
- outputDir: '../wwwroot',
- lintOnSave: false,
- //publicPath: './', // 默认'/',部署应用包时的基本 URL
- assetsDir: '', // 相对于outputDir的静态资源(js、css、img、fonts)目录
- lintOnSave: false,
- runtimeCompiler: true, // 是否使用包含运行时编译器的 Vue 构建版本
- productionSourceMap: false, // 生产环境的 source map
- devServer: {
- overlay: {
- warnings: false,
- errors: false
- },
- },
- lintOnSave: false, //关闭语法检查
- }
|