mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
5187fcdb80
* add postcss after sass compilation * Fix indent * Fixed mixed tab indent with spaces
14 lines
282 B
Plaintext
14 lines
282 B
Plaintext
{
|
|
"presets": ["next/babel"],
|
|
"plugins": [
|
|
[
|
|
"css-modules-transform", {
|
|
"extensions": [".css", ".sass"],
|
|
"append": [ "postcss-cssnext" ],
|
|
"extractCss": "./static/css/bundle.css",
|
|
"preprocessCss": "./pre-processor.js"
|
|
}
|
|
]
|
|
]
|
|
}
|