cubeviz/vite.config.ts

9 lines
186 B
TypeScript
Raw Permalink Normal View History

2024-10-02 01:00:02 +00:00
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
2024-10-02 00:16:16 +00:00
// https://vitejs.dev/config/
export default defineConfig({
2024-10-02 01:00:02 +00:00
base: "/cubeviz",
2024-10-02 00:16:16 +00:00
plugins: [react()],
2024-10-02 01:00:02 +00:00
});