mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 21:53:56 +00:00
23 lines
583 B
JavaScript
23 lines
583 B
JavaScript
export default {
|
|
head: {
|
|
title: 'Nuxt Blog',
|
|
meta: [
|
|
{ charset: 'utf-8' },
|
|
{ name: 'viewport', content: 'width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no' }
|
|
],
|
|
link: [
|
|
{ rel: 'icon', href: '/favicon.ico', type: 'image/x-icon' },
|
|
{ rel: 'stylesheet', href: 'http://fonts.googleapis.com/css?family=Montserrat|Roboto:400,400italic,600|Roboto+Mono', type: 'text/css' }
|
|
]
|
|
},
|
|
css: [
|
|
'@/assets/css/common.css'
|
|
],
|
|
generate: {
|
|
routes: [
|
|
'/deep-dive-into-ocean',
|
|
'/welcome-to-my-blog'
|
|
]
|
|
}
|
|
}
|