All checks were successful
Build and Push Docker Image / build (push) Successful in 55s
9 lines
251 B
TypeScript
9 lines
251 B
TypeScript
import { TanStackRouterVite } from '@tanstack/router-plugin/vite'
|
|
import react from '@vitejs/plugin-react'
|
|
import { defineConfig } from 'vite'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [TanStackRouterVite(), react()],
|
|
})
|