1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/packages/infrastructure/webpack/webpack.config.ts
Iku-turso 5ddc1e19ad
chore: Consolidate infrastructure of webpack to ts to make it scriptable
Co-authored-by: Janne Savolainen <janne.savolainen@live.fi>
Signed-off-by: Iku-turso <mikko.aspiala@gmail.com>
Signed-off-by: Janne Savolainen <janne.savolainen@live.fi>
2023-05-03 08:11:13 +03:00

8 lines
201 B
TypeScript

import { configForNode } from "./src/node-config";
import nodeExternals from "webpack-node-externals";
export default {
...configForNode,
externals: [nodeExternals({ modulesFromFile: true })],
};