Skip to content

How can I use a CSP nonce with SolidStart? #924

Answered by mdynnl
peterhirn asked this question in Q&A
Discussion options

You must be logged in to vote

createHandler now accepts { nonce?: string } in 2nd param options | event => options. This also passes nonce to HydrationScript through hydration context whereas event.nonce is used for other scripts.

export default createHandler(
  () => ...,
  event => {
    const nonce = crypto.randomUUID();

    event.response.headers.set(
      "Content-Security-Policy",
      [
        `script-src 'nonce-${nonce}' 'strict-dynamic'`,
        `object-src 'none'`,
        `base-uri 'none'`,
      ].join(";")
    );

    return { nonce };
  }
)

can't seem to reproduce modulepreload script though, please provide if possible. but it might be related to this.

Replies: 2 comments 2 replies

Comment options

You must be logged in to vote
1 reply
@peterhirn
Comment options

Comment options

You must be logged in to vote
1 reply
@mdynnl
Comment options

Answer selected by peterhirn
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants