Summery
I’m creating Vue/Nuxt application by SPA mode.
To generate /.dist file, I execute nuxt generate
pages
├ index.vue
└ test.vue
I want to know how to redirect / to /test path by Nuxt.
What I trided
I tried middleware and module, but they do not work.
https://github.com/nuxt-community/redirect-module
>Solution :
One simple workaround is to use fetch hook in the index page to change rout to /test; Here is the code:
// index.vue
fetch() {
this.$router.push('./test');
}