Skip to content

Commit 8576bdf

Browse files
committed
fix(elements): temporary disable elements bundle minification
This is to avoid issues with Webpack consuming the bundle; minification false AND treeShaking seem to avoid the issue.
1 parent bbe26dc commit 8576bdf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/igniteui-angular-elements/esbuild.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const config = {
55
// logLevel: 'verbose',
66
entryPoints: [`${ROOT}/index.js`],
77
bundle: true,
8-
minify: true,
8+
minify: false, // temporary disabled due to Webpack issues https://github.com/webpack/webpack/issues/16262
99
outfile: `${ROOT}/elements.js`,
1010
format: 'esm',
1111
external: ['lit-html'],

0 commit comments

Comments
 (0)