diff --git a/public/_headers b/public/_headers index 47fbf41..2d5edab 100644 --- a/public/_headers +++ b/public/_headers @@ -1,5 +1,5 @@ /* - Content-Security-Policy: default-src 'none'; script-src 'self' 'sha256-uEFqyYCMaNy1Su5VmWLZ1hOCRBjkhm4+ieHHxQW6d3Y='; style-src 'self'; img-src 'self' https://avatars.githubusercontent.com; connect-src 'self' https://api.github.com; font-src 'self'; worker-src 'self'; manifest-src 'self'; frame-ancestors 'none'; base-uri 'self'; form-action 'none'; upgrade-insecure-requests + Content-Security-Policy: default-src 'none'; script-src 'self' 'sha256-uEFqyYCMaNy1Su5VmWLZ1hOCRBjkhm4+ieHHxQW6d3Y='; style-src-elem 'self'; style-src-attr 'unsafe-inline'; img-src 'self' data: https://avatars.githubusercontent.com; connect-src 'self' https://api.github.com; font-src 'self'; worker-src 'self'; manifest-src 'self'; frame-ancestors 'none'; base-uri 'self'; form-action 'none'; upgrade-insecure-requests X-Content-Type-Options: nosniff Referrer-Policy: strict-origin-when-cross-origin Permissions-Policy: geolocation=(), microphone=(), camera=() diff --git a/src/app/components/dashboard/ItemRow.tsx b/src/app/components/dashboard/ItemRow.tsx index ca72701..d72a94f 100644 --- a/src/app/components/dashboard/ItemRow.tsx +++ b/src/app/components/dashboard/ItemRow.tsx @@ -75,8 +75,8 @@ export default function ItemRow(props: ItemRowProps) { const fg = isValidHex ? labelTextColor(label.color) : "#374151"; return ( {label.name} diff --git a/src/app/components/shared/StatusDot.tsx b/src/app/components/shared/StatusDot.tsx index ff45fcf..1977659 100644 --- a/src/app/components/shared/StatusDot.tsx +++ b/src/app/components/shared/StatusDot.tsx @@ -41,8 +41,7 @@ export default function StatusDot(props: StatusDotProps) { const dot = () => ( @@ -52,8 +51,7 @@ export default function StatusDot(props: StatusDotProps) { /> ); diff --git a/src/app/index.css b/src/app/index.css index 514d249..40638f8 100644 --- a/src/app/index.css +++ b/src/app/index.css @@ -2,6 +2,7 @@ @plugin "daisyui" { themes: corporate --default, cupcake, light, nord, dim, dracula, dark, forest; + exclude: chat, mask, mockup; } diff --git a/wrangler.toml b/wrangler.toml index 479994c..e4d95c7 100644 --- a/wrangler.toml +++ b/wrangler.toml @@ -13,3 +13,13 @@ not_found_handling = "single-page-application" [[routes]] pattern = "gh.gordoncode.dev" custom_domain = true + +[observability] +enabled = true +head_sampling_rate = 1 + +[observability.logs] +enabled = true +head_sampling_rate = 1 +persist = true +invocation_logs = true