opengoal-launcher/vite.config.ts

37 lines
900 B
TypeScript
Raw Normal View History

2022-04-15 21:46:48 -04:00
import { defineConfig } from "vite";
import { svelte } from "@sveltejs/vite-plugin-svelte";
import Icons from "unplugin-icons/vite";
import { fileURLToPath, URL } from "url";
2022-04-14 00:26:38 -04:00
// https://vitejs.dev/config/
export default defineConfig({
server: {
port: 3000, // The port the server will listen on.
},
plugins: [
svelte({
hot: !process.env.VITEST,
}),
Icons({
compiler: "svelte",
}),
],
resolve: {
alias: {
$lib: fileURLToPath(new URL("./src/lib", import.meta.url)),
$assets: fileURLToPath(new URL("./src/assets", import.meta.url)),
},
},
2022-06-16 20:40:37 -04:00
optimizeDeps: { exclude: ["svelte-navigator"] },
2022-06-18 14:36:28 -04:00
build: {
rollupOptions: {
input: {
main: fileURLToPath(new URL("./index.html", import.meta.url)),
splash: fileURLToPath(
new URL("./src/splash/index.html", import.meta.url),
2022-06-18 14:36:28 -04:00
),
},
},
},
2022-04-15 21:46:48 -04:00
});