40 lines
873 B
TypeScript
40 lines
873 B
TypeScript
import { defineConfig } from 'vite';
|
|
import react from '@vitejs/plugin-react';
|
|
import { fileURLToPath } from 'url';
|
|
import { dirname, resolve } from 'path';
|
|
|
|
const __dirname = dirname(fileURLToPath(import.meta.url));
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
resolve: {
|
|
alias: {
|
|
'@': resolve(__dirname, 'src'),
|
|
},
|
|
},
|
|
server: {
|
|
proxy: {
|
|
'/my': {
|
|
target: 'http://black.local:3100',
|
|
changeOrigin: true,
|
|
},
|
|
// Settings API served by the Mac agent's local web server
|
|
'/api': {
|
|
target: 'http://localhost:8765',
|
|
changeOrigin: false,
|
|
},
|
|
},
|
|
},
|
|
build: {
|
|
outDir: 'dist',
|
|
sourcemap: false,
|
|
rollupOptions: {
|
|
output: {
|
|
manualChunks: {
|
|
react: ['react', 'react-dom'],
|
|
query: ['@tanstack/react-query'],
|
|
},
|
|
},
|
|
},
|
|
},
|
|
});
|