diff options
| author | ivarlovlie <git@ivarlovlie.no> | 2023-02-11 21:04:43 +0100 |
|---|---|---|
| committer | ivarlovlie <git@ivarlovlie.no> | 2023-02-11 21:04:43 +0100 |
| commit | 23ab0a24ba82004fa449491b4e08698a1de9e6a0 (patch) | |
| tree | d701120d9a77f67153c93149ec7871bfd571bbfb /postcss.config.cjs | |
| download | auroraklinikken.no-23ab0a24ba82004fa449491b4e08698a1de9e6a0.tar.xz auroraklinikken.no-23ab0a24ba82004fa449491b4e08698a1de9e6a0.zip | |
feat: Initial commit
Diffstat (limited to 'postcss.config.cjs')
| -rw-r--r-- | postcss.config.cjs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/postcss.config.cjs b/postcss.config.cjs new file mode 100644 index 0000000..fe10e55 --- /dev/null +++ b/postcss.config.cjs @@ -0,0 +1,13 @@ +const tailwindcss = require('tailwindcss'); +const autoprefixer = require('autoprefixer'); + +const config = { + plugins: [ + //Some plugins, like tailwindcss/nesting, need to run before Tailwind, + tailwindcss(), + //But others, like autoprefixer, need to run after, + autoprefixer + ] +}; + +module.exports = config; |
