diff --git a/index.html b/index.html index e0dea3e..957f311 100644 --- a/index.html +++ b/index.html @@ -2,7 +2,6 @@ - ENS Deed Reclaim @@ -13,4 +12,4 @@ - \ No newline at end of file + diff --git a/package.json b/package.json index cbbbe10..62a47af 100644 --- a/package.json +++ b/package.json @@ -17,6 +17,7 @@ "graphql-request": "^7.0.1", "react": "^18.2.0", "react-dom": "^18.2.0", + "react-helmet": "^6.1.0", "react-transition-state": "^1.1.5", "styled-components": "^6.1.11", "viem": "2.13.6", diff --git a/src/csp.tsx b/src/csp.tsx new file mode 100644 index 0000000..9e87556 --- /dev/null +++ b/src/csp.tsx @@ -0,0 +1,24 @@ +import { Helmet } from "react-helmet"; + +const resources = [ + "https://*.googletagmanager.com", + "plausible.io", + "static.cloudflareinsights.com", + "*.ens-app-v3.pages.dev", + "https://app.intercom.io", + "https://widget.intercom.io", + "https://js.intercomcdn.com", +].join(" "); + +const content = + meta.env.NODE_ENV === "production" + ? `worker-src 'self'; script-src 'self' 'sha256-UyYcl+sKCF/ROFZPHBlozJrndwfNiC5KT5ZZfup/pPc=' ${resources} 'wasm-unsafe-eval';` + : "script-src 'self'"; + +export function Csp() { + return ( + + + + ); +} diff --git a/src/main.tsx b/src/main.tsx index fd4bcd5..148142e 100644 --- a/src/main.tsx +++ b/src/main.tsx @@ -10,6 +10,7 @@ import { WagmiProvider } from "wagmi"; import { ThorinGlobalStyles, lightTheme } from "@ensdomains/thorin"; import { ThemeProvider } from "styled-components"; import App from "./App.tsx"; +import { Csp } from "./csp"; import { config } from "./wagmi.ts"; import "./index.css"; @@ -25,6 +26,7 @@ ReactDOM.createRoot(document.getElementById("root")!).render( +