mirror of
https://github.com/openziti/zrok.git
synced 2024-11-23 00:23:48 +01:00
17 lines
291 B
JavaScript
17 lines
291 B
JavaScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
server: {
|
|
proxy: {
|
|
'/v1': {
|
|
target: 'http://localhost:8888',
|
|
changeOrigin: true,
|
|
}
|
|
}
|
|
}
|
|
})
|
|
|