Nuxt/examples/spa/nuxt.config.js

42 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'],
/*
** Customize 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
*/
// 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
*/
// color: '#DBE1EC'
// background: 'white'
}
}