You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm currently trying to compile the webapp code without creating the source maps files in production. It's currently working for app code but not for vendor.js file (I understand that vendor file has the dependencies from the project). It doesn't matter if I change classic/broccoli configuration or I override Webpack's configuration, it still creates the source map for vendor.js file.
This is an example of the dist/assets directory. The webapp files are created without source map as expected but it stills creates it for vendor file:
// ls -la dist/assets
chunk.123.js
chunk.456.js
vendor.css
vendor.js
vendor.css.map
**vendor.map**
I haven't dug deep enough into Embroider's code to know why this happens, so I'm not 100% sure this is an issue with Embroider. Could it be possible that source map configuration isn't passed down to vendor file compilation?
The text was updated successfully, but these errors were encountered:
I'm currently trying to compile the webapp code without creating the source maps files in production. It's currently working for app code but not for
vendor.js
file (I understand that vendor file has the dependencies from the project). It doesn't matter if I change classic/broccoli configuration or I override Webpack's configuration, it still creates the source map forvendor.js
file.An example of what I have already tried:
This is an example of the
dist/assets
directory. The webapp files are created without source map as expected but it stills creates it for vendor file:I haven't dug deep enough into Embroider's code to know why this happens, so I'm not 100% sure this is an issue with Embroider. Could it be possible that source map configuration isn't passed down to vendor file compilation?
The text was updated successfully, but these errors were encountered: