Do a bit more configuration for nuxt, set server = 'static'

This commit is contained in:
Yoann Chaudet
2022-07-20 13:14:25 -07:00
parent 398adf731a
commit 844ceaff5a
7 changed files with 31 additions and 12 deletions

View File

@@ -1,2 +1,2 @@
// Default Pages configuration for Nuxt
export default {router: {base: '/docs/'}}
export default {server: 'static', router: {base: '/docs/'}}

View File

@@ -1,5 +1,6 @@
export default {
// Disable server-side rendering: https://go.nuxtjs.dev/ssr-mode
server: 'static',
router: { base: "/docs/" },
ssr: false,