feat: initial release v0.1.0

This commit is contained in:
2026-01-07 16:44:16 +09:00
commit fa05c56cf5
139 changed files with 95667 additions and 0 deletions

8
vite.config.js Normal file
View File

@@ -0,0 +1,8 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
base: './', // Ensure relative paths for Electron
})