mirror of
https://github.com/wavetermdev/waveterm.git
synced 2024-12-22 16:48:23 +01:00
16 lines
365 B
TypeScript
16 lines
365 B
TypeScript
|
import { defineConfig } from "vite";
|
||
|
import react from "@vitejs/plugin-react";
|
||
|
import tsconfigPaths from "vite-tsconfig-paths";
|
||
|
|
||
|
export default defineConfig({
|
||
|
plugins: [react({}), tsconfigPaths()],
|
||
|
publicDir: "public",
|
||
|
build: {
|
||
|
rollupOptions: {
|
||
|
input: {
|
||
|
app: "public/index.html",
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
});
|