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
Would be wonderful if this could work with code splitting.
Maybe something like this:
{ input: [ 'src/page-a', 'src/page-b', ], output: { dir: 'dist', format: 'system', }, plugins: [ hash({ dest: '[name].[hash].js' }), ], }
The text was updated successfully, but these errors were encountered:
To make this work right now, this plugin would have to change the systemjs dependencies of the entry chunks.
Rather than depending on, e.g. ./chunk-a123456.js, an entry chunk should depend on a hashed file (e.g. ./bc9ad9a0f06e754084463e43971368b1b23979ce.js)
./chunk-a123456.js
./bc9ad9a0f06e754084463e43971368b1b23979ce.js
Sorry, something went wrong.
No branches or pull requests
Would be wonderful if this could work with code splitting.
Maybe something like this:
The text was updated successfully, but these errors were encountered: