Skip to content

Commit 0e9e1fd

Browse files
authored
Fix broken tailwindcss/postcss referencing (#64)
1 parent 4869601 commit 0e9e1fd

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

{{cookiecutter.project_slug}}/frontend/app/assets/css/main.css

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
@import "tailwindcss";
12
@tailwind base;
23

34
html,
@@ -9,4 +10,4 @@ body,
910
}
1011

1112
@tailwind components;
12-
@tailwind utilities;
13+
@tailwind utilities;
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1-
module.exports = {
1+
const config = {
22
plugins: {
3-
autoprefixer: {},
43
'@tailwindcss/postcss': {},
4+
autoprefixer: {},
55
},
6+
67
};
8+
9+
export default config;

0 commit comments

Comments
 (0)