mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 21:53:56 +00:00
46 lines
1.1 KiB
JavaScript
46 lines
1.1 KiB
JavaScript
module.exports = {
|
|
/*
|
|
** Single Page Application mode
|
|
** Means no SSR
|
|
*/
|
|
mode: 'spa',
|
|
/*
|
|
** Headers of the page (works with SPA!)
|
|
*/
|
|
head: {
|
|
title: 'SPA mode with Nuxt.js',
|
|
meta: [
|
|
{ charset: 'utf-8' },
|
|
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
|
|
{ hid: 'description', name: 'description', content: 'Single Page Application made with Nuxt.js' }
|
|
],
|
|
link: [
|
|
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }
|
|
]
|
|
},
|
|
/*
|
|
** Add css for appear transition
|
|
*/
|
|
css: ['~/assets/main.css'],
|
|
/*
|
|
** Cutomize loading indicator
|
|
*/
|
|
loadingIndicator: {
|
|
/*
|
|
** See https://github.com/nuxt/nuxt.js/tree/dev/lib/app/views/loading for available loading indicators
|
|
** You can add a custom indicator by giving a path
|
|
** Default: 'circle'
|
|
*/
|
|
name: 'folding-cube',
|
|
/*
|
|
** You can give custom options given to the template
|
|
** See https://github.com/nuxt/nuxt.js/blob/dev/lib/app/views/loading/folding-cube.html
|
|
** Default:
|
|
** - color: '#3B8070'
|
|
** - background: 'white'
|
|
*/
|
|
color: '#222',
|
|
background: 'white'
|
|
}
|
|
}
|