You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
408 B

3 years ago
const Setting = require('./src/setting.env')
4 years ago
// 使用等比适配插件
module.exports = {
lintOnSave: true,
css: {
loaderOptions: {
3 years ago
sass: {
prependData: `@import "@/styles/var.scss";`
},
4 years ago
}
},
publicPath: Setting.publicPath,
outputDir: Setting.outputDir,
assetsDir: Setting.assetsDir,
4 years ago
devServer: {
3 years ago
port: 8081 // 固定端口
},
productionSourceMap: false,
4 years ago
}