[Vuejs]-Unable to expose a public page referenced in an email to let users reset their password in a Vue JS, Node JS and Mongo db website structure

0๐Ÿ‘

โœ…

I faced the same issue in my project!

Unable to acess links (copying and pasting) whitin my Site : Node.js โ€“ Express.js โ€“ Webpack โ€“ Vue.js โ€“ historymode

The problem was related to my weback.prod.conf.js file.

Try to add this info to your "output" attribue in your webpack conf file :
publicPath: โ€˜/โ€™

you should have something like this :

output: {
    publicPath: '/'
}

Leave a comment