mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-06 06:03:58 +00:00
30 lines
623 B
JavaScript
30 lines
623 B
JavaScript
module.exports = {
|
|
loading: false,
|
|
head: {
|
|
meta: [
|
|
{ charset: 'utf-8' },
|
|
{ name: 'viewport', content: 'width=device-width, initial-scale=1' }
|
|
]
|
|
},
|
|
env: {
|
|
users: [
|
|
{ id: 1, name: 'Kobe Bryant', number: 24 },
|
|
{ id: 2, name: 'Michael Jordan', number: 23 },
|
|
{ id: 3, name: 'Stephen Curry', number: 30 },
|
|
{ id: 4, name: 'Lebron James', number: 23 },
|
|
{ id: 5, name: 'Kevin Durant', number: 35 },
|
|
{ id: 6, name: 'Kyrie Irving', number: 2 }
|
|
]
|
|
},
|
|
generate: {
|
|
routes: [
|
|
'/1',
|
|
'/2',
|
|
'/3',
|
|
'/4',
|
|
'/5',
|
|
'/6'
|
|
]
|
|
}
|
|
}
|