mirror of
https://github.com/Djeeberjr/fw-anwesenheit.git
synced 2025-07-02 01:04:16 +00:00
19 lines
350 B
TypeScript
19 lines
350 B
TypeScript
import { defineConfig } from "vite"
|
|
import { svelte } from "@sveltejs/vite-plugin-svelte"
|
|
import tailwindcss from "@tailwindcss/vite";
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig({
|
|
plugins: [
|
|
tailwindcss(),
|
|
svelte()
|
|
],
|
|
server: {
|
|
proxy: {
|
|
"/api": {
|
|
target: "http://localhost:8080",
|
|
},
|
|
},
|
|
},
|
|
})
|