21 lines
384 B
TypeScript
21 lines
384 B
TypeScript
import { defineConfig } from 'vite';
|
|
import react from '@vitejs/plugin-react';
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
server: {
|
|
host: '0.0.0.0',
|
|
watch: {
|
|
usePolling: true,
|
|
},
|
|
fs: {
|
|
strict: false,
|
|
},
|
|
proxy: {
|
|
'/api': 'http://server:8000',
|
|
'/screenshots': 'http://server:8000',
|
|
},
|
|
},
|
|
});
|