summaryrefslogtreecommitdiff
path: root/webpack.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'webpack.config.js')
-rw-r--r--webpack.config.js13
1 files changed, 12 insertions, 1 deletions
diff --git a/webpack.config.js b/webpack.config.js
index 529e222..ba6756e 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -8,7 +8,18 @@ module.exports = {
use: [
"style-loader",
"css-loader",
- "postcss-loader",
+ {
+ loader: "postcss-loader",
+ options: {
+ postcssOptions: {
+ plugins: [
+ require("autoprefixer"),
+ require("postcss-nested"),
+ require("@tailwindcss/postcss"),
+ ]
+ }
+ }
+ },
],
},
{