1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Fix all Webpack builds using react by add missing function call

Signed-off-by: Iku-turso <mikko.aspiala@gmail.com>
This commit is contained in:
Iku-turso 2023-03-16 14:46:10 +02:00
parent db79f0ecdb
commit 0baaa3cbe6

View File

@ -1,7 +1,7 @@
const path = require("path");
const getReactConfig = require("./get-react-config");
module.exports = getReactConfig({
module.exports = getReactConfig()({
entrypointFilePath: "./index.ts",
outputDirectory: path.resolve(process.cwd(), "dist"),
});