mirror of
				https://github.com/Djeeberjr/fw-anwesenheit.git
				synced 2025-11-04 07:34:10 +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:3000",
 | 
						|
      },
 | 
						|
    },
 | 
						|
  },
 | 
						|
})
 |