AI
AIGIT · AI 工具站
aigit.cc
首页
精品推荐
AI成品工具
提示词
返回 AiToEarn
tailwind.config.js
根目录
/
project
/
aitoearn-electron
/
tailwind.config.js
1
/** @type {import('tailwindcss').Config} */
2
export default {
3
content: [
4
'./index.html',
5
'./src/**/*.{js,ts,jsx,tsx}',
6
],
7
theme: {
8
extend: {},
9
},
10
corePlugins: {
11
preflight: false,
12
},
13
plugins: [],
14
}
15
15 lines
JAVASCRIPT