mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-16 12:37:20 +00:00
15 lines
357 B
TypeScript
15 lines
357 B
TypeScript
import { devServer } from "bknd/adapter/vite";
|
|
import react from "@vitejs/plugin-react";
|
|
import { defineConfig } from "vite";
|
|
import tsconfigPaths from "vite-tsconfig-paths";
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [
|
|
react(),
|
|
tsconfigPaths(),
|
|
devServer({
|
|
entry: "./src/server.ts"
|
|
}) as any
|
|
]
|
|
}); |