nuxt lang

Solutions on MaxInterview for nuxt lang by the best coders in the world

showing results for - "nuxt lang"
Maximiliano
23 Jul 2020
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