- Move index.html to src/renderer/ (electron-vite hard requirement) - Flatten React source to src/ (main.tsx, App.tsx, components/) - Remove debug red background - Use @tailwindcss/postcss plugin Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
12 lines
195 B
JavaScript
12 lines
195 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./src/renderer/index.html",
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
}
|