We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c941068 commit 4028bb5Copy full SHA for 4028bb5
1 file changed
packages/router/src/Exceptions/local/src/entrypoint/main.ts
@@ -1,14 +1,14 @@
1
import ui from '@nuxt/ui/vue-plugin'
2
import { createApp } from 'vue'
3
-import { createRouter, createWebHistory } from 'vue-router'
+import { createMemoryHistory, createRouter } from 'vue-router'
4
import renderer from '../renderer.vue'
5
import { initializeExceptionStore } from '../store'
6
import './style.css'
7
8
const app = createApp(renderer)
9
const router = createRouter({
10
routes: [],
11
- history: createWebHistory(),
+ history: createMemoryHistory(),
12
})
13
14
const element = document.getElementById('tempest-hydration')
0 commit comments