Skip to content

Commit

Permalink
refactor: 환경변수 설정 리팩터링
Browse files Browse the repository at this point in the history
  • Loading branch information
shackstack committed Aug 25, 2024
1 parent 3e4215f commit 7d1fd0f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion frontend/.gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/node_modules
/dist
/*.env
/.env.*
/cypress.env.json
2 changes: 1 addition & 1 deletion frontend/.webpack/webpack.dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ module.exports = merge(common, {
},
plugins: [
new Dotenv({
path: path.resolve(__dirname, `../.dev.env`),
path: path.resolve(__dirname, `../.env.dev`),
}),
],
});
2 changes: 1 addition & 1 deletion frontend/.webpack/webpack.prod.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ module.exports = merge(common, {
plugins: [
new ForkTsCheckerWebpackPlugin(),
new Dotenv({
path: path.resolve(__dirname, `../.prod.env`),
path: path.resolve(__dirname, `../.env.prod`),
}),
],
});

0 comments on commit 7d1fd0f

Please sign in to comment.