diff --git a/config-service/.idea/.gitignore b/config-service/.idea/.gitignore new file mode 100644 index 0000000..c3f502a --- /dev/null +++ b/config-service/.idea/.gitignore @@ -0,0 +1,8 @@ +# 디폴트 무시된 파일 +/shelf/ +/workspace.xml +# 에디터 기반 HTTP 클라이언트 요청 +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/owner-vue/.idea/.gitignore b/owner-vue/.idea/.gitignore new file mode 100644 index 0000000..c3f502a --- /dev/null +++ b/owner-vue/.idea/.gitignore @@ -0,0 +1,8 @@ +# 디폴트 무시된 파일 +/shelf/ +/workspace.xml +# 에디터 기반 HTTP 클라이언트 요청 +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/owner-vue/src/App.vue b/owner-vue/src/App.vue index 3674ca7..1121e76 100644 --- a/owner-vue/src/App.vue +++ b/owner-vue/src/App.vue @@ -13,6 +13,7 @@ diff --git a/owner-vue/src/views/Category.vue b/owner-vue/src/views/Category.vue index 10d1933..9ef4637 100644 --- a/owner-vue/src/views/Category.vue +++ b/owner-vue/src/views/Category.vue @@ -22,15 +22,24 @@ - + - - {{ item.name }} + + {{ item.name }} + + + - Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. + item-list @@ -42,7 +51,7 @@ diff --git a/owner-vue/vue.config.js b/owner-vue/vue.config.js index 2ae460b..bc0acb2 100644 --- a/owner-vue/vue.config.js +++ b/owner-vue/vue.config.js @@ -1,5 +1,17 @@ module.exports = { transpileDependencies: [ 'vuetify' - ] + ], + devServer:{ + proxy:{ + 'store-service/' :{ + target: 'http://localhost:8001', + ws:true, + }, + 'order-service/' :{ + target: 'http://localhost:8001', + ws:true, + } + } + } }