Skip to content

Commit

Permalink
revert hash routing changes as ipfs issue was resolved after pages we…
Browse files Browse the repository at this point in the history
…re synched
  • Loading branch information
yuetloo committed May 1, 2023
1 parent 71f8abc commit 8a214bc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions vue-app/public/_redirects
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/* /index.html 200
4 changes: 2 additions & 2 deletions vue-app/src/router/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { createRouter, createWebHashHistory } from 'vue-router'
import { createRouter, createWebHistory } from 'vue-router'
import type { RouteRecordRaw } from 'vue-router'

const Landing = () => import('@/views/Landing.vue')
Expand Down Expand Up @@ -251,7 +251,7 @@ const routes: Array<RouteRecordRaw> = [
]

const router = createRouter({
history: createWebHashHistory(),
history: createWebHistory(),
routes,
})

Expand Down

0 comments on commit 8a214bc

Please sign in to comment.