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.

28 lines
606 B

4 years ago
const Setting = require('./src/setting.env')
4 years ago
// 使用等比适配插件
module.exports = {
lintOnSave: true,
css: {
loaderOptions: {
4 years ago
sass: {
prependData: `@import "@/styles/var.scss";`
},
4 years ago
}
},
publicPath: Setting.publicPath,
outputDir: Setting.outputDir,
assetsDir: Setting.assetsDir,
4 years ago
devServer: {
4 years ago
port: 8081 // 固定端口
},
productionSourceMap: false,
12 months ago
chainWebpack: config => {
// config.module
// .rule("images")
// .use("image-webpack-loader")
// .loader("image-webpack-loader")
// .options({ bypassOnDebug: true })
// .end();
12 months ago
}
4 years ago
}