0
Fork 0
mirror of https://github.com/thomiceli/opengist.git synced 2025-02-19 01:55:43 -05:00
opengist/postcss.config.js

11 lines
260 B
JavaScript
Raw Normal View History

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