Go to website
Back
Articles on:
Build code
No description
How disable javascript symbols/names minification
PlayCode uses esbuild under the hood. Esbuild renames symbols to reduce code size and bundling sometimes need to rename symbols to avoid collisions. That changes value of the name property for many of these cases. This is usually fine because the name property is normally only used for debugging. However, some frameworks rely on the name property for registration and binding purposes. If this is the case, you can enable an option to preserve the original name valu
Few readers