mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-06 06:03:58 +00:00
23 lines
585 B
JavaScript
23 lines
585 B
JavaScript
|
module.exports = {
|
||
|
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'
|
||
|
]
|
||
|
}
|
||
|
}
|