Files

20 lines
394 B
TypeScript
Raw Permalink Normal View History

import { sveltekit } from '@sveltejs/kit/vite';
import tailwindcss from '@tailwindcss/vite';
import { defineConfig } from 'vite';
export default defineConfig({
plugins: [tailwindcss(), sveltekit()],
server: {
proxy: {
'/api': {
target: 'http://localhost:8087',
changeOrigin: true
},
'/images': {
target: 'http://localhost:8087',
changeOrigin: true
}
}
}
});