Skip to content

Commit 01f8e00

Browse files
update
1 parent e061dc5 commit 01f8e00

4 files changed

+23
-0
lines changed

package-lock.json

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+5
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,10 @@
3434
"last 1 firefox version",
3535
"last 1 safari version"
3636
]
37+
},
38+
"devDependencies": {
39+
"autoprefixer": "^10.4.7",
40+
"postcss": "^8.4.13",
41+
"tailwindcss": "^3.0.24"
3742
}
3843
}

postcss.config.js

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
module.exports = {
2+
plugins: {
3+
tailwindcss: {},
4+
autoprefixer: {},
5+
},
6+
}

tailwind.config.js

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
module.exports = {
2+
content: [],
3+
theme: {
4+
extend: {},
5+
},
6+
plugins: [],
7+
}

0 commit comments

Comments
 (0)