pages
| index.vue
| posts
| | index.vue
| | _post.vue
nuxt generate
в папке posts получаю один index.htmlnuxt.config.js
generate: {
routes: async function () {
/* получить список постов, у которых есть свойство postname */
const { data: posts } = await axios.get('https://mydomain/posts');
/* вернуть массив адресов вида '/posts/%postname%' */
return posts.map(u => `/posts/${u.postname}`);
}
},