11 lines
346 B
JavaScript
11 lines
346 B
JavaScript
|
|
module.exports = {
|
||
|
|
parser: 'postcss-scss',
|
||
|
|
plugins: [
|
||
|
|
require('postcss-import'),
|
||
|
|
require('tailwindcss'),
|
||
|
|
require("autoprefixer"), // example of plugin you might use
|
||
|
|
...(process.env.JEKYLL_ENV == "production" // example of only using a plugin in production
|
||
|
|
? [require("cssnano")({ preset: "default" })]
|
||
|
|
: [])
|
||
|
|
]
|
||
|
|
};
|