Last active
October 18, 2018 10:28
-
-
Save jackbarham/1f30a7d979dc10164179b70bedbde0cf to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const pkg = require('./package') | |
module.exports = { | |
mode: 'universal', | |
/* | |
** Headers of the page | |
*/ | |
head: { | |
title: 'Matter of Form', | |
meta: [ | |
{ charset: 'utf-8' }, | |
{ name: 'viewport', content: 'width=device-width, initial-scale=1' }, | |
{ hid: 'description', name: 'description', content: pkg.description } | |
], | |
link: [{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }] | |
}, | |
/* | |
** Customize the progress-bar color | |
*/ | |
loading: { color: '#fff' }, | |
/* | |
** Global CSS | |
*/ | |
css: [], | |
/* | |
** Plugins to load before mounting the App | |
*/ | |
plugins: [], | |
/* | |
** Nuxt.js modules | |
*/ | |
modules: [ | |
// Doc: https://github.com/nuxt-community/axios-module#usage | |
'@nuxtjs/axios', | |
// Doc: https://bootstrap-vue.js.org/docs/ | |
'bootstrap-vue/nuxt' | |
], | |
/* | |
** Axios module configuration | |
*/ | |
axios: { | |
// See https://github.com/nuxt-community/axios-module#options | |
}, | |
/* | |
** Build configuration | |
*/ | |
build: { | |
publicPath: '_nuxt/client', | |
/* | |
** You can extend webpack config here | |
*/ | |
extend(config, ctx) { | |
// Run ESLint on save | |
if (ctx.isDev && ctx.isClient) { | |
config.module.rules.push({ | |
enforce: 'pre', | |
test: /\.(js|vue)$/, | |
loader: 'eslint-loader', | |
exclude: /(node_modules)/ | |
}) | |
} | |
} | |
}, | |
// srcDir: '/', // No need to set it | |
performance: { | |
gzip: false | |
}, | |
router: { | |
base: `/` | |
}, | |
dev: false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment