Small fixes (#196)

This commit is contained in:
Thomas Miceli
2024-01-04 04:44:56 +01:00
parent 7c1d6e8bfd
commit d85917bfb2
20 changed files with 41 additions and 27 deletions

12
public/postcss.config.js vendored Normal file
View File

@ -0,0 +1,12 @@
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: {},
},
}