feat: changes deployment method from nitro to bun native server

This commit is contained in:
2026-03-09 12:10:24 -06:00
parent de91f39231
commit a475d4c5a0
3 changed files with 557 additions and 8 deletions

View File

@@ -1,14 +1,8 @@
import { tanstackStart } from '@tanstack/react-start/plugin/vite'
import react from '@vitejs/plugin-react-swc'
import { nitro } from 'nitro/vite'
import { defineConfig } from 'vite'
import tsConfigPaths from 'vite-tsconfig-paths'
export default defineConfig({
plugins: [
tsConfigPaths(),
nitro({ preset: 'bun', devServer: { port: 5173 } }),
tanstackStart(),
react()
]
plugins: [tsConfigPaths(), tanstackStart(), react()]
})