Skip to content

Commit

Permalink
fix: prod start command (#414)
Browse files Browse the repository at this point in the history
  • Loading branch information
JeevaRamu0104 authored Feb 16, 2024
1 parent 79d211b commit 4bdebb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"setup-env": "chmod +x ./replace_env.sh && ./replace_env.sh",
"pre-commit": "bash .githooks/commit-msg",
"start": "npm run setup-env && cp env-config.js ./public/hyperswitch && APP_VERSION=$npm_package_version && appName=hyperswitch webpack serve --config webpack.dev.js",
"serve": "npm run setup-env && cp env-config.js ./public/hyperswitch && node dist/server/server.js",
"serve": "npm run setup-env && cp env-config.js ./dist/hyperswitch && node dist/server/server.js",
"prod:start": "webpack serve --config webpack.dev.js",
"build:netlify": "webpack --config webpack.prod.js --env netlifyHosted",
"build:prod": "npm run re:clean && npm run re:build && npm run setup-env && cp env-config.js ./public/hyperswitch && APP_VERSION=$npm_package_version && webpack --config webpack.prod.js",
Expand Down

0 comments on commit 4bdebb0

Please sign in to comment.