mirror of
https://github.com/versia-pub/versia-go.git
synced 2025-12-06 06:28:18 +01:00
14 lines
366 B
TypeScript
14 lines
366 B
TypeScript
|
|
import {defineConfig} from "vite";
|
||
|
|
import react from "@vitejs/plugin-react";
|
||
|
|
import {TanStackRouterVite} from "@tanstack/router-plugin/vite";
|
||
|
|
|
||
|
|
// https://vitejs.dev/config/
|
||
|
|
export default defineConfig({
|
||
|
|
plugins: [TanStackRouterVite(), react()],
|
||
|
|
build: {
|
||
|
|
rollupOptions: {
|
||
|
|
external: ["@opentelemetry/sdk-trace-node"],
|
||
|
|
},
|
||
|
|
},
|
||
|
|
});
|