desktop/tailwind.config.cjs
Ivan Li 9814247f4e feat: 完善项目。
- 后端代码结构调整;
- 所有屏幕截屏;
- 前端增加 tailwind;
- 前端 style lint。
2022-11-19 15:28:34 +08:00

13 lines
189 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
},
},
plugins: [],
}