mirror of
https://github.com/gnmyt/myspeed.git
synced 2026-02-14 01:28:39 -06:00
19 lines
346 B
JavaScript
19 lines
346 B
JavaScript
import react from '@vitejs/plugin-react'
|
|
import path from "path";
|
|
|
|
export default {
|
|
plugins: [react()],
|
|
build: {
|
|
outDir: 'build'
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
'@': path.resolve(__dirname, './src'),
|
|
},
|
|
},
|
|
server: {
|
|
proxy: {
|
|
"/api": "http://localhost:5216/"
|
|
}
|
|
}
|
|
} |