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
488 B
20 lines
488 B
3 years ago
|
module.exports = {
|
||
|
//基本路径
|
||
|
publicPath: "./",
|
||
|
outputDir: "dist",
|
||
|
//放置静态资源目录
|
||
|
assetsDir: "static",
|
||
|
css: {
|
||
|
loaderOptions: {
|
||
|
css: {
|
||
|
// options here will be passed to css-loader
|
||
|
},
|
||
|
postcss: {
|
||
|
// options here will be passed to postcss-loader
|
||
|
plugins: [require('postcss-px2rem')({
|
||
|
remUnit: 54
|
||
|
})]
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|