Skip to content

Commit

Permalink
[FE] build:dev 스크립트에서 노드 환경을 production으로 수정 (#327)
Browse files Browse the repository at this point in the history
* Revert "[FE] build:dev 스크립트에서 노드 환경을 production으로 수정 (#326)"

This reverts commit b9cd009.

* chore: dev모드 빌드 시 production모드로 빌드하도록 수정

* refactor: 불필요한 로직 제거
  • Loading branch information
Largopie authored Aug 23, 2024
1 parent b9cd009 commit c5236e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"prod": "webpack server --open --config webpack.prod.js",
"dev": "webpack server --open --config webpack.dev.js",
"build:prod": "NODE_ENV=production webpack --config webpack.prod.js && npm run sentry:sourcemaps",
"build:dev": "NODE_ENV=production webpack --config webpack.dev.js",
"build:dev": "NODE_ENV=production webpack --config webpack.prod.js",
"sentry:sourcemaps": "sentry-cli sourcemaps inject ./dist && sentry-cli sourcemaps upload -o momo2024 -p momo-harry-test /dist",
"lint:css": "stylelint '**/*.styles.ts' --fix",
"test": "jest",
Expand Down

0 comments on commit c5236e8

Please sign in to comment.