mirror of
https://github.com/App1ePine/free-video.git
synced 2025-12-11 10:49:38 +00:00
18 lines
310 B
JavaScript
18 lines
310 B
JavaScript
import { defineConfig } from '@rsbuild/core'
|
|
import { pluginVue } from '@rsbuild/plugin-vue'
|
|
|
|
export default defineConfig({
|
|
plugins: [pluginVue()],
|
|
server: {
|
|
port: 8080,
|
|
open: true,
|
|
proxy: {
|
|
'/api': {
|
|
target: 'http://localhost:3000',
|
|
changeOrigin: true,
|
|
secure: false,
|
|
},
|
|
},
|
|
},
|
|
})
|