Removed pinia from dependencies, added .env to doc

This commit is contained in:
Florian Sylvain
2023-03-09 11:20:28 +01:00
parent b597acbc35
commit e06bd7fbcb
4 changed files with 10 additions and 74 deletions
-2
View File
@@ -1,5 +1,4 @@
import { createApp } from "vue"
import { createPinia } from "pinia"
import App from "./App.vue"
import router from "./router"
@@ -8,7 +7,6 @@ import "./assets/base.css"
const app = createApp(App)
app.use(createPinia())
app.use(router)
app.mount("#app")