diff --git a/src/main.js b/src/main.js index 53938589..f985b87a 100644 --- a/src/main.js +++ b/src/main.js @@ -1,6 +1,6 @@ import App from './App' import { createSSRApp } from 'vue' -import pinia from '@/store/index.js' +import pinia from './store.js' export function createApp() { const app = createSSRApp(App) diff --git a/src/store/index.js b/src/store.js similarity index 65% rename from src/store/index.js rename to src/store.js index 11969a4c..23cb5271 100644 --- a/src/store/index.js +++ b/src/store.js @@ -1,3 +1,3 @@ import { createPinia } from 'pinia'; - const store = createPinia();; + const store = createPinia(); export default store; \ No newline at end of file