Skip to content

Commit

Permalink
refactor(manager): 코드 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
noctesilente committed Jun 6, 2024
1 parent 343c804 commit bb1f732
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 0 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
<link rel="icon" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.jsdelivr.net/npm/vue@3/dist/vue.global.prod.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vuex@4/dist/vuex.global.prod.js"></script>
<title>Vite App</title>
</head>
<body>
Expand Down
2 changes: 2 additions & 0 deletions src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import router from './router/mainRouter.js';
import App from './App.vue';
import axios from 'axios';
import store from './store/index.js';
import { createStore } from 'vuex';

axios.defaults.baseURL = 'http://localhost:5000'; // 백엔드 서버의 주소와 포트를 지정합니다.
axios.defaults.withCredentials = true; // 쿠키를 포함하여 요청을 보내도록 설정합니다.
Expand All @@ -20,6 +21,7 @@ import 'bootstrap/dist/css/bootstrap.css';
import 'bootstrap-vue-3/dist/bootstrap-vue-3.css';

const app = createApp(App);

app.use(router);
app.use(store);
app.use(BootstrapVue3);
Expand Down

0 comments on commit bb1f732

Please sign in to comment.