- 移除 CDN Tailwind,改用本地构建的 style.css - 添加 package.json、tailwind.config.js、input.css 构建配置 - 清理 prd.json、progress.txt 及误创建的文件 - 修复 login.rs 中未使用变量命名 (_token → token) - 更新 .gitignore 排除 node_modules 和 package-lock.json Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
10 lines
193 B
JavaScript
10 lines
193 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
darkMode: 'class',
|
|
content: ['./src/**/*.rs', './index.html'],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
}
|