From 7d1fd0fc0f442b899a48363f38efb302e51ccdab Mon Sep 17 00:00:00 2001 From: Jeremy <102432453+shackstack@users.noreply.github.com> Date: Sun, 25 Aug 2024 11:28:44 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=20=ED=99=98=EA=B2=BD=EB=B3=80?= =?UTF-8?q?=EC=88=98=20=EC=84=A4=EC=A0=95=20=EB=A6=AC=ED=8C=A9=ED=84=B0?= =?UTF-8?q?=EB=A7=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/.gitignore | 2 +- frontend/.webpack/webpack.dev.js | 2 +- frontend/.webpack/webpack.prod.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/.gitignore b/frontend/.gitignore index a4915e394..42b5f2451 100644 --- a/frontend/.gitignore +++ b/frontend/.gitignore @@ -1,4 +1,4 @@ /node_modules /dist -/*.env +/.env.* /cypress.env.json \ No newline at end of file diff --git a/frontend/.webpack/webpack.dev.js b/frontend/.webpack/webpack.dev.js index 075e5bcea..35211d4e7 100644 --- a/frontend/.webpack/webpack.dev.js +++ b/frontend/.webpack/webpack.dev.js @@ -36,7 +36,7 @@ module.exports = merge(common, { }, plugins: [ new Dotenv({ - path: path.resolve(__dirname, `../.dev.env`), + path: path.resolve(__dirname, `../.env.dev`), }), ], }); diff --git a/frontend/.webpack/webpack.prod.js b/frontend/.webpack/webpack.prod.js index 079913415..4a449564e 100644 --- a/frontend/.webpack/webpack.prod.js +++ b/frontend/.webpack/webpack.prod.js @@ -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`), }), ], });