Skip to content

Commit 98103c3

Browse files
committed
Fix: error in build options
1 parent 7f35720 commit 98103c3

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

esbuild.config.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ const options = {
2323
bundle: true,
2424
platform: "browser",
2525
format: "esm",
26+
minify: true,
2627
sourcemap: true,
2728
keepNames: true,
2829
loader: {
2930
".png": "file"
3031
},
3132
plugins: [cleaner],
32-
metafile: true,
3333
external: ["react", "react-dom", "@dreamworld/addon-redux"]
3434
};
3535

@@ -41,7 +41,6 @@ build({
4141
build({
4242
...options,
4343
outfile: "./dist/index.slim.js",
44-
minify: true,
4544
external: [
4645
...options.external,
4746
"@radix-ui/react-checkbox",

0 commit comments

Comments
 (0)