11 lines
257 B
TypeScript
11 lines
257 B
TypeScript
import { tanstackStart } from '@tanstack/react-start/plugin/vite'
|
|
import react from '@vitejs/plugin-react'
|
|
import { defineConfig } from 'vite'
|
|
|
|
export default defineConfig({
|
|
resolve: {
|
|
tsconfigPaths: true
|
|
},
|
|
plugins: [tanstackStart(), react()]
|
|
})
|