1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/packages/core/webpack/library-bundle.ts
Sebastian Malton ed36b46e01 Try to fix problems with seperate chunks
Signed-off-by: Sebastian Malton <sebastian@malton.name>
2023-02-02 14:28:40 -05:00

17 lines
400 B
TypeScript

/**
* Copyright (c) OpenLens Authors. All rights reserved.
* Licensed under MIT License. See LICENSE in root directory for more information.
*/
import { webpackLensCommon } from "./common";
import { webpackLensMain } from "./main";
import { webpackLensRenderer } from "./renderer";
const config = [
webpackLensMain(),
webpackLensRenderer(),
webpackLensCommon(),
];
export default config;