Remove Hash Mode on Netlify (VueJS)

Sometimes our FE framework make the default history mode is hash mode. So the url gonna look like this: https://domain.com/#/path It looks unnatural and also make us confuse when navigating. To remove this: In the code Do not use createWebHashHistory Use createWebHistory instead In the root directory create new file name: netlify.toml content is below, this is to make sure our spa app is handling the routing, not the webserver...

July 19, 2025 · 1 min

Just a note when deploy Quasar with Netlify

I usually deploy my FE with Netlify. I also usually using Quasar for my FE. Deploy with Netlify is very straightforward. But sometime I forgot it. Just need to setup build command and publish folder then you’re done. This post is imported from: https://thebrownbox.hashnode.dev/just-a-note-when-deploy-quasar-with-netlify

July 19, 2025 · 1 min