chore: upgrade Vite to v8 and update React plugins

This commit is contained in:
2026-03-17 16:27:19 -06:00
parent cb7e4d3449
commit 1771924c69
3 changed files with 137 additions and 185 deletions

View File

@@ -1,8 +1,10 @@
import { tanstackStart } from '@tanstack/react-start/plugin/vite'
import react from '@vitejs/plugin-react-swc'
import react from '@vitejs/plugin-react'
import { defineConfig } from 'vite'
import tsConfigPaths from 'vite-tsconfig-paths'
export default defineConfig({
plugins: [tsConfigPaths(), tanstackStart(), react()]
resolve: {
tsconfigPaths: true
},
plugins: [tanstackStart(), react()]
})