From 71baf92e1bbd9495c164b0a1a06954649b0b8d97 Mon Sep 17 00:00:00 2001 From: ImxYJL Date: Wed, 24 Jul 2024 10:44:06 +0900 Subject: [PATCH] =?UTF-8?q?ci:=20env=20=EC=A0=88=EB=8C=80=EA=B2=BD?= =?UTF-8?q?=EB=A1=9C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/webpack.config.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/frontend/webpack.config.js b/frontend/webpack.config.js index 9874c5357..2abe9539a 100644 --- a/frontend/webpack.config.js +++ b/frontend/webpack.config.js @@ -3,6 +3,9 @@ const HtmlWebpackPlugin = require('html-webpack-plugin'); const path = require('path'); const Dotenv = require('dotenv-webpack'); +//console.log('Loading .env file from:', path.resolve(__dirname, './.env')); // 디버그 로그 추가 +//console.log('Loading .env file from:', path.resolve(__dirname, './.env')); // 디버그 로그 추가 + module.exports = (env, argv) => { const isProduction = argv.mode === 'production'; @@ -52,7 +55,8 @@ module.exports = (env, argv) => { new CleanWebpackPlugin(), new Dotenv({ systemvars: true, - path: './frontend/.env', + path: '/home/runner/work/2024-review-me/2024-review-me/frontend/.env.', + //path: './.env', }), ], devtool: isProduction ? 'hidden-source-map' : 'eval',