12345678910111213141516171819202122232425 |
- import { fileURLToPath, URL } from 'node:url';
- import { defineConfig } from 'vite';
- import vue from '@vitejs/plugin-vue';
- // https://vitejs.dev/config/
- export default defineConfig({
- plugins: [vue()],
- server: {
- port: 20001,
- proxy: {
- '/api/live/v0': {
- target: 'http://broadcast.waityou24.cn',
- },
- '/api/util/dbInit': {
- target: 'http://broadcast.waityou24.cn',
- },
- },
- },
- resolve: {
- alias: {
- '@': fileURLToPath(new URL('./src', import.meta.url)),
- },
- },
- });
|