mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
41 lines
1.1 KiB
TypeScript
41 lines
1.1 KiB
TypeScript
import react from '@vitejs/plugin-react-swc';
|
|
import { visualizer } from 'rollup-plugin-visualizer';
|
|
import { PluginOption, UserConfig } from 'vite';
|
|
import eslint from 'vite-plugin-eslint';
|
|
import tsconfigPaths from 'vite-tsconfig-paths';
|
|
|
|
export const appConfig: UserConfig = {
|
|
base: './',
|
|
plugins: [
|
|
react(),
|
|
eslint(),
|
|
tsconfigPaths(),
|
|
visualizer() as unknown as PluginOption,
|
|
],
|
|
build: {
|
|
chunkSizeWarningLimit: 1500,
|
|
},
|
|
server: {
|
|
// Proxy HTTP requests to the flask server
|
|
proxy: {
|
|
// Proxy socket.io to the nodes socketio server
|
|
'/ws/socket.io': {
|
|
target: 'ws://127.0.0.1:9090',
|
|
ws: true,
|
|
},
|
|
// Proxy openapi schema definiton
|
|
'/openapi.json': {
|
|
target: 'http://127.0.0.1:9090/openapi.json',
|
|
rewrite: (path) => path.replace(/^\/openapi.json/, ''),
|
|
changeOrigin: true,
|
|
},
|
|
// proxy nodes api
|
|
'/api/v1': {
|
|
target: 'http://127.0.0.1:9090/api/v1',
|
|
rewrite: (path) => path.replace(/^\/api\/v1/, ''),
|
|
changeOrigin: true,
|
|
},
|
|
},
|
|
},
|
|
};
|