26 lines
No EOL
619 B
TypeScript
26 lines
No EOL
619 B
TypeScript
import { defineConfig } from 'vite'
|
|
import { devtools } from '@tanstack/devtools-vite'
|
|
import { tanstackStart } from '@tanstack/react-start/plugin/vite'
|
|
import viteReact from '@vitejs/plugin-react'
|
|
import tailwindcss from '@tailwindcss/vite'
|
|
import { nitro } from 'nitro/vite'
|
|
|
|
import { cloudflare } from "@cloudflare/vite-plugin";
|
|
|
|
const config = defineConfig({
|
|
resolve: { tsconfigPaths: true },
|
|
server: { port: 4174 },
|
|
plugins: [
|
|
devtools(),
|
|
tailwindcss(),
|
|
tanstackStart(),
|
|
viteReact(),
|
|
cloudflare({
|
|
viteEnvironment: {
|
|
name: "ssr"
|
|
}
|
|
}),
|
|
],
|
|
})
|
|
|
|
export default config |