-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvue.config.js
39 lines (38 loc) · 1.17 KB
/
vue.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
const { defineConfig } = require('@vue/cli-service');
module.exports = {
transpileDependencies: true,
lintOnSave: false, // eslint 비활성화
pluginOptions: {
vuetify: {
// Vuetify options
// https://github.com/vuetifyjs/vuetify-loader/tree/next/packages/vuetify-loader
},
},
// 개발 서버 설정
devServer: {
// 프록시 설정
proxy: {
// 프록시 요청을 보낼 api의 시작 부분
'/api': {
// 프록시 요청을 보낼 서버의 주소
target: 'http://52.78.77.1:8000',
pathRewrite: { '^/api': '' }, // 이 부분을 추가하여 경로에서 '/api'를 제거
}
},
// routine-share.vue에서 발생하는 "ResizeObserver loop completed with undelivered notifications." 에러 무시 처리
client: {
overlay: {
runtimeErrors: (error) => {
const ignoreErrors = [
"ResizeObserver loop limit exceeded",
"ResizeObserver loop completed with undelivered notifications.",
];
if (ignoreErrors.includes(error.message)) {
return false;
}
return true;
},
},
}
}
};