feat(desktop): 迁移启动页到 React 并接入 Motion 动画

This commit is contained in:
2026-02-16 05:10:15 +08:00
parent 5edab0ba1d
commit 93a2519012
12 changed files with 279 additions and 103 deletions

View File

@@ -1,10 +1,11 @@
import tailwindcss from '@tailwindcss/vite'
import react from '@vitejs/plugin-react'
import { defineConfig } from 'electron-vite'
export default defineConfig({
main: {},
preload: {},
renderer: {
plugins: [tailwindcss()],
plugins: [react(), tailwindcss()],
},
})