Commit b8c4ad1c authored by Pooya Parsa's avatar Pooya Parsa

reorder keys

parent 9d2aec85
module.exports = { module.exports = {
build: {
extractCSS: true,
extend(config, {isClient}) {
config.resolve.alias['create-api'] =
`./create-api-${isClient ? 'client' : 'server'}.js`
}
},
head: { head: {
titleTemplate: 'Nuxt HN | %s', titleTemplate: 'Nuxt HN | %s',
}, },
loading: {color: '#ff6600'}, loading: {color: '#ff6600'},
manifest: {
theme_color: '#41B883'
},
modules: [ modules: [
require('@nuxtjs/manifest'), require('@nuxtjs/manifest'),
require('@nuxtjs/meta'), require('@nuxtjs/meta'),
...@@ -11,15 +21,5 @@ module.exports = { ...@@ -11,15 +21,5 @@ module.exports = {
], ],
plugins: [ plugins: [
'~plugins/filters.js' '~plugins/filters.js'
], ]
build: {
extractCSS: true,
extend(config, {isClient}) {
config.resolve.alias['create-api'] =
`./create-api-${isClient ? 'client' : 'server'}.js`
}
},
manifest: {
theme_color: '#41B883'
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment