diff --git a/.env b/.env index bb72122..8edb782 100644 --- a/.env +++ b/.env @@ -1,2 +1,2 @@ #백엔드 포트 번호 -VUE_APP_BE_API_URL=http://localhost:8082 +VUE_APP_BE_API_URL=http://ec2-43-202-20-87.ap-northeast-2.compute.amazonaws.com:8080/ diff --git a/src/views/mainpage/MainpageView.vue b/src/views/mainpage/MainpageView.vue index ee1d75c..75a9fae 100644 --- a/src/views/mainpage/MainpageView.vue +++ b/src/views/mainpage/MainpageView.vue @@ -110,11 +110,7 @@ 토실토실 아코가 자라는 중

- 아코 이미지 + 아코 이미지 @@ -123,7 +119,8 @@ diff --git a/tailwind.config.js b/tailwind.config.js index c2d3c9f..c5068bb 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -17,5 +17,6 @@ module.exports = { } } }, - plugins: [] + plugins: [], + purge: ['./src/**/*.html', './src/**/*.vue', './public/**/*.html'] } diff --git a/vue.config.js b/vue.config.js index ac2a854..b80d265 100644 --- a/vue.config.js +++ b/vue.config.js @@ -17,9 +17,9 @@ module.exports = defineConfig({ devServer: { proxy: { '/api': { - target: 'http://localhost:8082', // 백엔드 서버 주소 - changeOrigin: true, // 백엔드 서버의 도메인과 상관없이 요청을 보낼 수 있게 허용 - secure: false // HTTPS가 아니므로 설정 (필요한 경우 추가) + target: + 'http://ec2-43-202-20-87.ap-northeast-2.compute.amazonaws.com:8080', + changeOrigin: true } }, port: 3000