We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When inlining a script using
new InlineSourceWebpackPlugin({ compress: true, noAssetMatch: "error", }),
and
<script inline inline-asset="foo-main.+\.js$" inline-asset-delete></script>
The asset to be inlined is not located in the physical filesystem, but emitted by Webpack.
The resulting file references a SourceMap like so:
//# sourceMappingURL=foo.0d0fb7084e53fd4fd4b3.js.map
but the file is not present in the Filesystem.
The SourceMap
The text was updated successfully, but these errors were encountered:
I see. By using inline-asset-delete the .js and .map file have been deleted.
inline-asset-delete
Let's modify the expected behavior:
Sorry, something went wrong.
No branches or pull requests
Problem description
When inlining a script using
and
The asset to be inlined is not located in the physical filesystem, but emitted by Webpack.
The resulting file references a SourceMap like so:
but the file is not present in the Filesystem.
Expected behavior
The SourceMap
The text was updated successfully, but these errors were encountered: