Skip to content

Commit

Permalink
refactor: set frontend port by enviorment variable
Browse files Browse the repository at this point in the history
  • Loading branch information
Jiwon-Woo committed Dec 28, 2023
1 parent c290b69 commit 9b7d6ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webpack.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ const config = {
},
devServer: {
historyApiFallback: true,
port: 3050,
port: +process.env.FRONT_PORT || 3050,
},
};

Expand Down

0 comments on commit 9b7d6ca

Please sign in to comment.