mirror of
https://github.com/Anil-matcha/Open-Generative-AI.git
synced 2026-09-01 15:35:52 +08:00
35b7103c26
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
15 lines
285 B
JavaScript
15 lines
285 B
JavaScript
import { defineConfig } from 'vite';
|
|
|
|
export default defineConfig({
|
|
base: './',
|
|
server: {
|
|
proxy: {
|
|
'/api': {
|
|
target: 'https://api.muapi.ai',
|
|
changeOrigin: true,
|
|
secure: false
|
|
}
|
|
}
|
|
}
|
|
});
|