So, i'm using static mode with nuxt content. I have asyncData to catch query param of page and load my paginated content, but query params are always an empty object. For example localhost:3000/articles?page=3
async asyncData($nuxt) {
console.log($nuxt.query) // always an empty object
}
@haykokalipsis This is intentional behaviour. See https://nuxtjs.org/blog/going-full-static/#new-config-option-code-target-code-

change target to server.
Most helpful comment
@haykokalipsis This is intentional behaviour. See https://nuxtjs.org/blog/going-full-static/#new-config-option-code-target-code-