Port to Vue. Also implements plenty of new functionality.
This commit is contained in:
2025-08-22 23:34:33 +01:00
parent a92ef0479a
commit 018b9ecc55
35 changed files with 4137 additions and 1717 deletions

18
vite.config.js Normal file
View File

@@ -0,0 +1,18 @@
import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import vueDevTools from 'vite-plugin-vue-devtools'
// https://vite.dev/config/
export default defineConfig({
plugins: [
vue(),
vueDevTools(),
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
},
},
})