Compare commits

...

1 Commits

Author SHA1 Message Date
Jack Hadrill 8e6f061dd2 Build changes
continuous-integration/drone/push Build is passing Details
2021-01-05 04:08:45 +00:00
2 changed files with 11 additions and 2 deletions

View File

@ -5,8 +5,6 @@ name: deploy
steps:
- name: build
image: node:lts
environment:
NODE_ENV: production
commands:
- npm install
- npm run build

11
vue.config.js Normal file
View File

@ -0,0 +1,11 @@
module.exports = {
productionSourceMap: false,
configureWebpack: {
optimization: {
splitChunks: {
minSize: 10000,
maxSize: 250000
}
}
}
}