mirror of
https://github.com/thomiceli/opengist.git
synced 2024-12-22 12:32:40 +00:00
12 lines
310 B
JavaScript
Vendored
12 lines
310 B
JavaScript
Vendored
module.exports = {
|
|
plugins: {
|
|
'postcss-import': {},
|
|
'tailwindcss/nesting': {},
|
|
tailwindcss: {
|
|
config: "./public/tailwind.config.js",
|
|
},
|
|
autoprefixer: {},
|
|
'postcss-selector-namespace': {namespace() {return (process.env.EMBED) ? '.opengist-embed' : '';}},
|
|
cssnano: {},
|
|
},
|
|
}
|