mirror of
https://github.com/shishantbiswas/bknd-examples.git
synced 2026-02-27 03:51:17 +00:00
35 lines
868 B
TypeScript
35 lines
868 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 viteTsConfigPaths from "vite-tsconfig-paths";
|
|
import { fileURLToPath, URL } from "url";
|
|
import tailwindcss from "@tailwindcss/vite";
|
|
import { nitro } from "nitro/vite";
|
|
|
|
const config = defineConfig({
|
|
resolve: {
|
|
alias: {
|
|
"@": fileURLToPath(new URL("./src", import.meta.url)),
|
|
},
|
|
},
|
|
plugins: [
|
|
nitro({ preset: "node-server" }),
|
|
tailwindcss(),
|
|
devtools(),
|
|
// this is the plugin that enables path aliases
|
|
viteTsConfigPaths({
|
|
projects: ["./tsconfig.json"],
|
|
}),
|
|
|
|
tanstackStart(),
|
|
viteReact({
|
|
babel: {
|
|
plugins: ["babel-plugin-react-compiler"],
|
|
},
|
|
}),
|
|
],
|
|
});
|
|
|
|
export default config;
|