morningalarm/frontend/vite.config.ts

13 lines
253 B
TypeScript
Raw Permalink Normal View History

2023-10-01 00:54:59 +00:00
import { defineConfig } from 'vite'
import { svelte } from '@sveltejs/vite-plugin-svelte'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [svelte()],
server: {
proxy: {
'/api': 'http://localhost:3000',
},
},
})