mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 00:53:55 +00:00
19 lines
414 B
JavaScript
19 lines
414 B
JavaScript
|
const fetch = require('node-fetch')
|
||
|
|
||
|
export default {
|
||
|
plugins: [
|
||
|
'@/plugins/vue-placeholders.js'
|
||
|
],
|
||
|
modules: [
|
||
|
'@nuxt/http'
|
||
|
],
|
||
|
generate: {
|
||
|
async routes () {
|
||
|
const posts = await fetch('https://jsonplaceholder.typicode.com/posts').then(res => res.json()).then(d => d.slice(0, 20))
|
||
|
const routes = posts.map(post => `/posts/${post.id}`)
|
||
|
|
||
|
return ['/'].concat(routes)
|
||
|
}
|
||
|
}
|
||
|
}
|