c3lf-system-3/web/vue.config.js

31 lines
876 B
JavaScript
Raw Normal View History

2024-06-18 18:10:10 +00:00
// vue.config.js
module.exports = {
devServer: {
headers: {
"Access-Control-Allow-Origin": "*",
"Access-Control-Allow-Headers": "*",
"Access-Control-Allow-Methods": "*"
},
2024-11-01 19:42:13 +00:00
//proxy: {
// '^/media/2': {
// target: 'https://staging.c3lf.de/',
// changeOrigin: true
// },
// '^/api/2': {
// target: 'https://staging.c3lf.de/',
// changeOrigin: true,
// },
// '^/api/1': {
// target: 'https://staging.c3lf.de/',
// changeOrigin: true,
// },
// '^/ws/2': {
// target: 'http://127.0.0.1:8082/',
// //changeOrigin: true,
// ws: true,
// logLevel: 'debug',
// },
//}
2024-06-18 18:10:10 +00:00
}
}