mirror of
https://github.com/exo-explore/exo.git
synced 2025-12-23 14:17:58 -05:00
* 8000 -> 52415 * dont grab the api port for placement --------- Co-authored-by: rltakashige <rl.takashige@gmail.com>
17 lines
391 B
TypeScript
17 lines
391 B
TypeScript
import tailwindcss from '@tailwindcss/vite';
|
|
import { sveltekit } from '@sveltejs/kit/vite';
|
|
import { defineConfig } from 'vite';
|
|
|
|
export default defineConfig({
|
|
plugins: [tailwindcss(), sveltekit()],
|
|
server: {
|
|
proxy: {
|
|
'/v1': 'http://localhost:52415',
|
|
'/state': 'http://localhost:52415',
|
|
'/models': 'http://localhost:52415',
|
|
'/instance': 'http://localhost:52415'
|
|
}
|
|
}
|
|
});
|
|
|