Change config file

This commit is contained in:
Joe Au-Yeung 2023-01-23 16:44:16 -05:00
parent 12ab615684
commit 03943f5d4a

View File

@ -262,6 +262,19 @@ const nextConfig = {
return redirects;
},
async headers() {
return [
{
source: "/:path*",
headers: [
{
key: "X-Frame-Options",
value: "SAMEORIGIN",
},
],
},
];
},
};
const sentryWebpackPluginOptions = {