20 lines
454 B
TypeScript
20 lines
454 B
TypeScript
|
|
import { tanstackStart } from "@tanstack/react-start/plugin/vite";
|
||
|
|
import viteReact from "@vitejs/plugin-react";
|
||
|
|
import { defineConfig } from "vite";
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
server: { port: 3000 },
|
||
|
|
plugins: [
|
||
|
|
tanstackStart({
|
||
|
|
router: {
|
||
|
|
routeTreeFileHeader: [
|
||
|
|
"/* oxlint-disable */",
|
||
|
|
"// @ts-nocheck",
|
||
|
|
"// noinspection JSUnusedGlobalSymbols",
|
||
|
|
],
|
||
|
|
},
|
||
|
|
}),
|
||
|
|
viteReact(),
|
||
|
|
],
|
||
|
|
});
|