1module.exports = {
2 head: {
3 htmlAttrs: {
4 lang: 'en'
5 },
6 title: 'awesome title',
7 meta: [
8 { charset: 'utf-8' },
9 { name: 'viewport', content: 'width=device-width, initial-scale=1' },
10 { hid: 'description', name: 'description', content: 'Nuxt.js project' }
11 ],
12 link: [
13 { rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }
14 ]
15 },
16 ...
17}
18