Reputation:
I've chosen SPA mode when I first created the project, but after a while I want to change it to Universal mode. Is it possible to change it from nuxt.config.js
?
Upvotes: 2
Views: 6470
Reputation: 510
For the ones who receive the deprecation warning now instead of using mode: "universal"
You have to do the next in your nuxt.config.js
export default {
ssr: true,
}
Upvotes: 3
Reputation: 959
Yes you can easily change it on your nuxt.config.js
file by change mode:'spa'
to mode:'universal'
. Here is the docs.
Also remember after you do this if your server is running you need to stop and re-run it again.
Upvotes: 2