Skip to content

Commit 29f7e21

Browse files
webpack config
1 parent 6cd395b commit 29f7e21

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

webpack.config.js

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
module.exports = {
2+
module: {
3+
rules: [
4+
{
5+
test: /\.scss$/,
6+
loader: "postcss-loader",
7+
options: {
8+
postcssOptions: {
9+
ident: "postcss",
10+
syntax: "postcss-scss",
11+
plugins: [
12+
require("postcss-import"),
13+
require("tailwindcss"),
14+
require("autoprefixer"),
15+
],
16+
},
17+
},
18+
},
19+
],
20+
},
21+
};

0 commit comments

Comments
 (0)