16 lines
289 B
TypeScript
16 lines
289 B
TypeScript
import { defineConfig } from '@tanstack/react-start/config'
|
|
import tsConfigPaths from 'vite-tsconfig-paths'
|
|
|
|
export default defineConfig({
|
|
tsr: {
|
|
appDirectory: 'src',
|
|
},
|
|
vite: {
|
|
plugins: [
|
|
tsConfigPaths({
|
|
projects: ['./tsconfig.json'],
|
|
}),
|
|
],
|
|
},
|
|
})
|