There was an error while loading. Please reload this page.
1 parent a9c3072 commit 7da9533Copy full SHA for 7da9533
1 file changed
src/main.ts
@@ -4,6 +4,12 @@ import { createApp } from 'vue'
4
import App from './App.vue'
5
import router from './router'
6
7
+const targetUrl = 'https://mmi.place'
8
+
9
+if (typeof window !== 'undefined' && !window.location.href.startsWith(targetUrl)) {
10
+ window.location.replace(targetUrl)
11
+}
12
13
const app = createApp(App)
14
15
app.use(router)
0 commit comments