21 lines
494 B
TypeScript
21 lines
494 B
TypeScript
import { defineConfig } from 'vite'
|
|
import { devtools } from '@tanstack/devtools-vite'
|
|
import tsconfigPaths from 'vite-tsconfig-paths'
|
|
|
|
import { tanstackStart } from '@tanstack/react-start/plugin/vite'
|
|
|
|
import viteReact from '@vitejs/plugin-react'
|
|
import tailwindcss from '@tailwindcss/vite'
|
|
|
|
const config = defineConfig({
|
|
plugins: [
|
|
devtools(),
|
|
tsconfigPaths({ projects: ['./tsconfig.json'] }),
|
|
tailwindcss(),
|
|
tanstackStart(),
|
|
viteReact(),
|
|
],
|
|
})
|
|
|
|
export default config
|