Skip to content

Commit

Permalink
Update main.js
Browse files Browse the repository at this point in the history
  • Loading branch information
josephclaytonhansen committed Dec 31, 2023
1 parent 89d3977 commit bdb8d96
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ import './style.css'
import App from './App.vue'
import Blueprint from './components/main/blocks/blueprint/Blueprint.vue'
import Main from './components/main/Main.vue'
import {createRouter, createWebHashHistory, createMemoryHistory} from 'vue-router'
import {createRouter, createWebHashHistory, createWebHistory} from 'vue-router'

const routes = [
{ path: '/blueprint', component: Blueprint },
{ path: '/', component: Main},
]

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

Expand Down

0 comments on commit bdb8d96

Please sign in to comment.