Spaces:
Sleeping
Sleeping
| import { defineConfig } from 'vite' | |
| import react from '@vitejs/plugin-react' | |
| import qiankun from 'vite-plugin-qiankun' | |
| export default defineConfig({ | |
| base: '/sub-react/', | |
| plugins: [ | |
| react(), | |
| qiankun('sub-react', { | |
| useDevMode: true | |
| }) | |
| ], | |
| server: { | |
| port: 8082, | |
| cors: true, | |
| origin: 'http://localhost:8082' | |
| } | |
| }) | |