summaryrefslogtreecommitdiffhomepage
path: root/packages/frontend/vite.config.ts
blob: 3604d5ef6fe88374f9a4d686d3d294793dbabaf2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import { svelte } from "@sveltejs/vite-plugin-svelte";
import tailwindcss from "@tailwindcss/vite";
import { defineConfig } from "vite";

export default defineConfig({
	plugins: [tailwindcss(), svelte()],
	server: {
		port: 5173,
	},
	test: {
		include: ["tests/**/*.test.ts"],
	},
});