Upgrade dependencies

This commit is contained in:
Luck
2026-02-23 20:34:19 +00:00
parent 92e51b63be
commit 8a4e72603c
11 changed files with 1078 additions and 916 deletions

View File

@@ -1,7 +1,15 @@
import react from '@vitejs/plugin-react-swc';
import { fileURLToPath } from 'node:url';
import { defineConfig } from 'vite';
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
'monaco-themes/themes': fileURLToPath(
new URL('./node_modules/monaco-themes/themes', import.meta.url)
),
},
},
});