unloze-wrapper/vite.config.ts
2025-05-18 19:45:30 -04:00

17 lines
348 B
TypeScript

import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vite.dev/config/
export default defineConfig({
plugins: [vue()],
server: {
proxy: {
'/fastdl': {
target: 'https://uk-fastdl.unloze.com',
changeOrigin: true,
rewrite: path => path.replace(/^\/fastdl/, '')
}
}
}
})