Skip to content

Commit a670f3d

Browse files
authored
trying to add postcss
1 parent c03076a commit a670f3d

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

postcss.config.js

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
const themeDir = __dirname + "/../../";
2+
3+
module.exports = {
4+
plugins: [
5+
require("postcss-import")({
6+
path: [themeDir],
7+
}),
8+
require("tailwindcss")(themeDir + "assets/css/tailwind.config.js"),
9+
require("autoprefixer")({
10+
path: [themeDir],
11+
}),
12+
],
13+
};

0 commit comments

Comments
 (0)