添加tailwind,.env设置,优化删除

This commit is contained in:
zilong
2022-02-03 13:56:29 +08:00
parent 8d13fe6608
commit 6a82e9bcb1
16 changed files with 436 additions and 65 deletions

17
tailwind.config.js Normal file
View File

@@ -0,0 +1,17 @@
module.exports = {
content: [
// Example content paths...
'./index.html',
'./public/**/*.html',
'./src/**/*.{js,jsx,ts,tsx,vue}',
],
theme: {
extend: {},
},
plugins: [],
corePlugins: {
// ...
// preflight: false,
// backgroundOpacity: false,
},
}