Skip to content

Commit

Permalink
make it work in docker
Browse files Browse the repository at this point in the history
  • Loading branch information
peter committed Oct 16, 2024
1 parent 078a52c commit 78799a6
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@
"private": true,
"scripts": {
"dev": "git rev-parse HEAD > ./public/commitHash.txt; NODE_OPTIONS=--openssl-legacy-provider next dev -p 3333",
"dev1": "next dev -p 3333",
"build": "git rev-parse HEAD > ./public/commitHash.txt; NODE_OPTIONS=--openssl-legacy-provider next build",
"testbuild": "next build",
"dev1": "git rev-parse HEAD > ./public/commitHash.txt; next dev -p 3333",
"build": "git rev-parse HEAD > ./public/commitHash.txt; next build",
"buildNextGen": "git rev-parse HEAD > ./public/commitHash.txt; NODE_OPTIONS=--openssl-legacy-provider next build",
"testbuild": "NODE_OPTIONS=--openssl-legacy-provider next build",
"start": "next start -p 3333",
"lint": "eslint '*/**/*.{js,jsx}'",
"lint.fix": "eslint '*/**/*.{js,jsx}' --fix",
Expand Down

0 comments on commit 78799a6

Please sign in to comment.