18 lines
374 B
JavaScript
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",
|
|
},
|
|
},
|
|
},
|
|
});
|