remove proxy

This commit is contained in:
2025-01-17 18:11:03 +01:00
parent b22c3122d7
commit 808d846737
3 changed files with 7 additions and 30 deletions

View File

@@ -1,12 +1,17 @@
import { sveltekit } from '@sveltejs/kit/vite'
import precompileIntl from 'svelte-intl-precompile/sveltekit-plugin'
const port = 8001
const port = 3000
/** @type {import('vite').UserConfig} */
const config = {
clearScreen: false,
server: { port },
server: {
port,
proxy: {
'/api': 'http://localhost:8000',
},
},
preview: { port },
plugins: [sveltekit(), precompileIntl('locales')],
}