Merge branch 'develop'

This commit is contained in:
Sam Carlton 2020-12-29 20:17:57 -06:00
commit 4aaed4561e
2 changed files with 14 additions and 3 deletions

View file

@ -1,6 +1,11 @@
[build]
publish = "dist/"
command = "npm run generate"
command = "npm run generate --quiet"
[build.environment]
NPM_FLAGS = "--no-optional"
# https://docs.netlify.com/configure-builds/file-based-configuration/#redirects
@ -10,7 +15,7 @@
from = "/app/node"
to = "/app/nodejs"
status = 301
[[redirects]]
from = "/kind/entertainment"
to = "/kind/entertainment-and-media-apps/"

View file

@ -284,7 +284,13 @@ export default {
** Build configuration
*/
build: {
html: { minify: { collapseWhitespace: true } },
html: {
minify: {
minifyCSS: false,
minifyJS: false,
collapseWhitespace: true
}
},
/*
** You can extend webpack config here
*/