Skip to content

Commit

Permalink
Production Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
pjol committed Apr 8, 2024
1 parent 6a6c841 commit bb98053
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"scripts": {
"test": "npm jest",
"start": "webpack server --config ./webpack.config.js",
"start-prod": "webpack serve --open --config ./webpack.dev.js",
"build-prod": "webpack --config ./webpack.prod.js"
"start-prod": "webpack serve --open --config ./webpack.config.js",
"build-prod": "webpack --config ./webpack.config.js"
},
"dependencies": {
"@babel/core": "^7.23.6",
Expand Down
4 changes: 4 additions & 0 deletions frontend/src/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,8 @@ body {
border-radius: 10px;
}

#webpack-dev-server-client-overlay {
display: none;
}


2 changes: 1 addition & 1 deletion frontend/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ module.exports = {
historyApiFallback: true

},
mode: 'development',
mode: 'production',
module: {
rules: [{
test: /\.(js|jsx)$/,
Expand Down

0 comments on commit bb98053

Please sign in to comment.