tijl.dev-core/vite.config.ts
tijl a04246cddc
Some checks failed
build / build (push) Failing after 0s
updates
2024-08-21 15:43:24 +02:00

25 lines
440 B
TypeScript

import { defineConfig } from "vite";
export default defineConfig({
plugins: [],
build: {
outDir: "static/js", // Output directory for compiled JS
rollupOptions: {
output: {
entryFileNames: "[name].js",
chunkFileNames: "[name].js",
assetFileNames: "[name].[ext]",
},
input: {
interactive: "web/lib/index.ts",
},
},
},
server: {
port: 3001,
proxy: {
"/api": "http://localhost:3000",
},
},
});