beeta/frontend/vite.config.ts

22 lines
577 B
TypeScript
Raw Permalink Normal View History

2025-08-03 21:53:15 -04:00
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
export default defineConfig({
plugins: [sveltekit()],
server: {
port: 3000,
2026-01-05 22:54:27 -05:00
host: true,
proxy: {
// Proxy uploads to openresty for dev mode
'/uploads': {
target: 'http://localhost:80',
changeOrigin: true
},
// Proxy thumbnails to openresty
'/thumb': {
target: 'http://localhost:80',
changeOrigin: true
}
}
2025-08-03 21:53:15 -04:00
}
});