Skip to content

Commit

Permalink
Merge pull request #14 from dddwa/fix/content-cors
Browse files Browse the repository at this point in the history
Add cors headers for app content
  • Loading branch information
JakeGinnivan authored Nov 4, 2024
2 parents 652e93f + 7366652 commit 6277b15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/app/routes/_layout.app-content.$.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export async function loader({ params, request, context }: LoaderFunctionArgs) {
post: post.code,
conferenceState: context.conferenceState,
},
{ headers: { 'Cache-Control': CACHE_CONTROL.doc } },
{ headers: { 'Cache-Control': CACHE_CONTROL.doc, 'Access-Control-Allow-Origin': '*' } },
)
}

Expand Down

0 comments on commit 6277b15

Please sign in to comment.