There's an inconsistency between webpack and next turbo's `localIdentName` This also improves the hot-loading fixes #440
18 lines
272 B
JavaScript
18 lines
272 B
JavaScript
module.exports = {
|
|
plugins: [
|
|
"postcss-nested",
|
|
[
|
|
"postcss-preset-env",
|
|
{
|
|
autoprefixer: {
|
|
flexbox: "no-2009",
|
|
},
|
|
stage: 3,
|
|
features: {
|
|
"custom-properties": false,
|
|
},
|
|
},
|
|
],
|
|
],
|
|
};
|