From 8b0aa87d0f1834832ca9157dde9b417ce8fff4bc Mon Sep 17 00:00:00 2001 From: leemyongpakva Date: Tue, 19 Mar 2024 10:24:49 +0700 Subject: [PATCH] correct .env instruction link --- webpack/webpack.vars.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webpack/webpack.vars.js b/webpack/webpack.vars.js index 028d4eccb..ebd350768 100644 --- a/webpack/webpack.vars.js +++ b/webpack/webpack.vars.js @@ -7,7 +7,7 @@ const envFilePath = './webpack/.env'; if (fs.existsSync(envFilePath)) { require('dotenv').config({path: envFilePath}); } else { - console.error('\x1b[41m\x1b[37m%s\x1b[0m', 'Your .env file not exits. Read getting started section in documentation for more information https://devdocs.prestashop.com/8/themes/getting-started/.'); + console.error('\x1b[41m\x1b[37m%s\x1b[0m', 'Your .env file not exits. Read getting started section in documentation for more information https://github.com/PrestaShop/hummingbird?tab=readme-ov-file#how-to-build-assets/.'); process.exit(); }