mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-06 06:03:58 +00:00
27 lines
562 B
JavaScript
27 lines
562 B
JavaScript
export default {
|
|
head: {
|
|
meta: [
|
|
{
|
|
name: 'viewport',
|
|
content: 'width=device-width, initial-scale=1'
|
|
}
|
|
],
|
|
link: [
|
|
{
|
|
rel: 'stylesheet',
|
|
href:
|
|
'https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,400italic'
|
|
},
|
|
{
|
|
rel: 'stylesheet',
|
|
href: 'https://fonts.googleapis.com/icon?family=Material+Icons'
|
|
},
|
|
{
|
|
rel: 'stylesheet',
|
|
href: 'https://unpkg.com/muse-ui@2.1.0/dist/muse-ui.css'
|
|
}
|
|
]
|
|
},
|
|
plugins: ['~/plugins/museui']
|
|
}
|