Skip to content

Commit

Permalink
disable multithreading temporarily
Browse files Browse the repository at this point in the history
  • Loading branch information
n1ckoates committed Jul 6, 2024
1 parent edd0911 commit 0159a77
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,23 @@ const nextConfig = {
experimental: {
after: true,
},
async headers() {
return [
{
source: "/(.*)",
headers: [
{
key: "Cross-Origin-Opener-Policy",
value: "same-origin",
},
{
key: "Cross-Origin-Embedder-Policy",
value: "require-corp",
},
],
},
];
},
// async headers() {
// return [
// {
// source: "/(.*)",
// headers: [
// {
// key: "Cross-Origin-Opener-Policy",
// value: "same-origin",
// },
// {
// key: "Cross-Origin-Embedder-Policy",
// value: "require-corp",
// },
// ],
// },
// ];
// },
};

export default nextConfig;
Expand Down

0 comments on commit 0159a77

Please sign in to comment.