增加tailwindcss相关配置

This commit is contained in:
myh 2023-11-26 23:59:35 +08:00
parent a1ee32377d
commit 25dc0a92cf
2 changed files with 18 additions and 0 deletions

6
postcss.config.js Normal file
View File

@ -0,0 +1,6 @@
export default {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
}

12
tailwind.config.js Normal file
View File

@ -0,0 +1,12 @@
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{html,js}",
],
theme: {
extend: {},
},
plugins: [],
}