svelte/vite.config.js
2025-05-26 15:10:55 +00:00

18 lines
374 B
JavaScript

import { defineConfig } from "vite";
import { svelte } from "@sveltejs/vite-plugin-svelte";
// https://vite.dev/config/
export default defineConfig({
plugins: [svelte()],
build: {
rollupOptions: {
input: {
index: "index.html",
hello: "hello.html",
counter: "counter.html",
say_hello: "say-hello.html",
},
},
},
});