'use strict' // 引入等比适配插件 const px2rem = require('postcss-px2rem') // 配置基本大小 const postcss = px2rem({ // 基准大小 baseSize,需要和flexible.js中相同 remUnit: 80 }) module.exports = { publicPath: "/", outputDir: 'dist', assetsDir: 'static', lintOnSave: false, // 关闭语法检查 防止不必要的语法报错 productionSourceMap: false, devServer: { host: 'localhost', port: 8080, open: true, overlay: { warning: false, error: true, }, }, css: { loaderOptions: { postcss: { plugins: [ postcss ] } } } }