[Vuejs]-The requested URL /receipt was not found on this server but working on localhost

0👍

I changed createWebHistory to createWebHashHistory and it worked.

import { createWebHashHistory, createRouter } from "vue-router";


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

Leave a comment