mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
26 lines
608 B
JavaScript
26 lines
608 B
JavaScript
|
module.exports = {
|
||
|
head: {
|
||
|
meta: [
|
||
|
{
|
||
|
name: 'viewport',
|
||
|
content: 'width=device-width, initial-scale=1, minimal-ui'
|
||
|
}
|
||
|
],
|
||
|
link: [
|
||
|
{
|
||
|
rel: 'stylesheet',
|
||
|
href: 'https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,400italic|Material+Icons'
|
||
|
},
|
||
|
{
|
||
|
rel: 'stylesheet',
|
||
|
href: 'https://unpkg.com/vue-material@beta/dist/vue-material.min.css'
|
||
|
},
|
||
|
{
|
||
|
rel: 'stylesheet',
|
||
|
href: 'https://unpkg.com/vue-material@beta/dist/theme/default.css'
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
plugins: ['~/plugins/vue-material']
|
||
|
}
|