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