16 lines
266 B
JavaScript
16 lines
266 B
JavaScript
module.exports = {
|
|
devServer: {
|
|
port: 5173,
|
|
proxy: {
|
|
"/api": {
|
|
target: "http://localhost:8080",
|
|
changeOrigin: true
|
|
},
|
|
"/files": {
|
|
target: "http://localhost:8080",
|
|
changeOrigin: true
|
|
}
|
|
}
|
|
}
|
|
};
|