mirror of
https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git
synced 2025-08-14 00:25:46 +02:00
миграции33222
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -32,6 +32,8 @@ Thumbs.db
|
|||||||
.venv/
|
.venv/
|
||||||
venv/
|
venv/
|
||||||
.bolt/
|
.bolt/
|
||||||
|
.venv2/
|
||||||
|
|
||||||
|
|
||||||
# Python cache files
|
# Python cache files
|
||||||
__pycache__/
|
__pycache__/
|
||||||
|
@@ -1,9 +1,13 @@
|
|||||||
import { createApp } from 'vue';
|
import { createApp } from 'vue';
|
||||||
import { createPinia } from 'pinia';
|
import { createPinia } from 'pinia';
|
||||||
|
import axios from 'axios';
|
||||||
import App from './App.vue';
|
import App from './App.vue';
|
||||||
import router from './router';
|
import router from './router';
|
||||||
import './assets/main.css';
|
import './assets/main.css';
|
||||||
|
|
||||||
|
// Настраиваем базовый URL для axios
|
||||||
|
axios.defaults.baseURL = '/api';
|
||||||
|
|
||||||
const app = createApp(App);
|
const app = createApp(App);
|
||||||
|
|
||||||
app.use(createPinia());
|
app.use(createPinia());
|
||||||
|
Reference in New Issue
Block a user