opengist/postcss.config.js

11 lines
260 B
JavaScript
Raw Normal View History

2023-03-14 15:22:52 +00:00
module.exports = {
2023-03-23 15:00:48 +00:00
plugins: {
'postcss-import': {},
'tailwindcss/nesting': {},
2023-03-23 15:00:48 +00:00
tailwindcss: {},
autoprefixer: {},
'postcss-selector-namespace': {namespace() {return (process.env.EMBED) ? '.opengist-embed' : '';}},
2023-03-23 15:00:48 +00:00
cssnano: {},
},
2023-03-14 15:22:52 +00:00
}