how to remove /# in url
i'm use metronic8 vue
how to remove /# in url
Replies (1)
Hi,
Thank you for getting in touch with us.
The reason we have a hash in the URL is due to our usage of the hash mode. You can easily remove the hash from the URL by switching to HTML5 mode.
To achieve this, simply replace history property value to createWebHistory() in file src/router/index.ts as shown below.
import {
...
createWebHistory,
} from "vue-router";
...
const router = createRouter({
history: createWebHistory(),
routes,
});
... Keep in mind, when you deploy your app with HTML5 mode it will require you to have an additional configuration on your server.
Regards,
Lauris Stepanovs,
Keenthemes Support Team