chore: clean up nuxt config

This commit is contained in:
Alexander Lichter
2019-06-21 16:07:02 +02:00
committed by GitHub
parent d3407e1962
commit aaf91d8774

View File

@@ -2,8 +2,6 @@ import pkg from './package'
import store from './store.json' import store from './store.json'
export default { export default {
mode: 'universal',
/* /*
** Headers of the page ** Headers of the page
*/ */
@@ -39,33 +37,10 @@ export default {
*/ */
loading: { color: '#fff' }, loading: { color: '#fff' },
/*
** Global CSS
*/
css: [
],
/*
** Plugins to load before mounting the App
*/
plugins: [
],
/* /*
** Nuxt.js modules ** Nuxt.js modules
*/ */
modules: [ modules: [
'nuxt-clipboard2', 'nuxt-clipboard2',
], ]
/*
** Build configuration
*/
build: {
/*
** You can extend webpack config here
*/
extend(config, ctx) {
}
}
} }