-
Notifications
You must be signed in to change notification settings - Fork 29k
Closed
Labels
Description
Link to the code that reproduces this issue
https://github.com/darthmaim-reproductions/vercel-next.js-66901
To Reproduce
- run
npm run build && npm run start
- Open http://localhost:3000 in a browser and inspect the source code
Current vs. Expected behavior
Current
No integrity
attribute present on any <script>
Expected
integrity
attribute added to <script>
Provide environment information
Operating System:
Platform: linux
Arch: x64
Version: #1 SMP Thu Jan 11 04:09:03 UTC 2024
Available memory (MB): 15953
Available CPU cores: 8
Binaries:
Node: 20.7.0
npm: 10.1.0
Yarn: 1.22.19
pnpm: 6.11.0
Relevant Packages:
next: 15.0.0-canary.32 // Latest available version is detected (15.0.0-canary.32).
eslint-config-next: N/A
react: 19.0.0-rc.0
react-dom: 19.0.0-rc.0
typescript: 5.3.3
Next.js Config:
output: N/A
Which area(s) are affected? (Select all that apply)
Not sure
Which stage(s) are affected? (Select all that apply)
next start (local), Other (Deployed)
Additional context
The only change to the reproduction template was adding this config to next.config.mjs
:
experimental: {
sri: { algorithm: 'sha256' }
}
There is a test (https://github.com/vercel/next.js/tree/canary/test/production/app-dir/subresource-integrity) that is supposed to test this, which has the same config as my reproduction repository, but I was not able to get SRI working.
There is a .next/server/subresource-integrity-manifest.json
file generated which contains all the correct hashes.
oliviertassinari, RodrigoTomeES and StankyeMaykonMorais