27 lines
430 B
JavaScript
27 lines
430 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = {
|
|
webpack: {
|
|
alias: {
|
|
'@': path.join(__dirname, 'src'),
|
|
},
|
|
},
|
|
style: {
|
|
postcss: {
|
|
mode: 'extends',
|
|
loaderOptions: {
|
|
postcssOptions: {
|
|
ident: 'postcss',
|
|
plugins: [
|
|
// require('postcss-mobile-forever', {
|
|
// viewportWidth: 2560,
|
|
// appSelector: '#root',
|
|
// maxDisplayWidth: 1920,
|
|
// }),
|
|
],
|
|
},
|
|
},
|
|
},
|
|
},
|
|
};
|