From 7ecd6426d9c3f121c1c09c1cb89d79cd80d6c9d6 Mon Sep 17 00:00:00 2001 From: Ildar Kamalov Date: Mon, 11 Aug 2025 13:56:29 +0300 Subject: [PATCH] fix constant import --- client_v2/webpack.common.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client_v2/webpack.common.js b/client_v2/webpack.common.js index d5c06e8d..0e3b7a7a 100644 --- a/client_v2/webpack.common.js +++ b/client_v2/webpack.common.js @@ -5,7 +5,7 @@ import { CleanWebpackPlugin } from 'clean-webpack-plugin'; import CopyPlugin from 'copy-webpack-plugin'; import MiniCssExtractPlugin from 'mini-css-extract-plugin'; import * as url from 'url'; -import { BUILD_ENVS } from './constants'; +import { BUILD_ENVS } from './constants.js'; // eslint-disable-next-line no-underscore-dangle const __dirname = url.fileURLToPath(new URL('.', import.meta.url));