diff options
Diffstat (limited to '')
-rw-r--r-- | assets/postcss.config.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/assets/postcss.config.js b/assets/postcss.config.js new file mode 100644 index 0000000..068dbf9 --- /dev/null +++ b/assets/postcss.config.js @@ -0,0 +1,12 @@ +module.exports = { + plugins: { + 'postcss-import': {}, + 'postcss-nested': {}, + tailwindcss: {}, + autoprefixer: {}, + cssnano: { + preset: 'default' + }, + } + } + |