Unfinished hook action on exit: (terser) renderChunk #1426
Unanswered
mcriley821
asked this question in
Q&A
Replies: 1 comment
-
Having a similar issue currently while trying to build lobe-chat |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello, I'm trying to set up a TypeScript project that transpires to ES6 and is minified with terser. I have this setup:
package.json
rollup.config.ts
src/index.ts
The problem is
npm run build
outputs:And
npm run dev
just hangs indefinitely.If I remove the terser plugin from
options.plugins
, I get the expected result ofconsole.log("hello");
on stdout. Also, as a test, I installed terser globally and was able to successfully run it on my output file (larger than the repro).Is this a configuration problem or a problem within the plugin?
Beta Was this translation helpful? Give feedback.
All reactions