File size: 482 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import Script from 'next/script'
import { ShowScriptOrder } from '../app/script-nonce/show-order'

export default function Page() {
  return (
    <>
      <p>script-nonce</p>
      <Script strategy="afterInteractive" src="/test1.js" nonce="hello-world" />
      <Script
        strategy="beforeInteractive"
        src="/test2.js"
        nonce="hello-world"
      />
      <Script strategy="beforeInteractive" id="3" nonce="hello-world" />
      <ShowScriptOrder />
    </>
  )
}