Merge pull request #47 from makeplane/develop

fix: clickjacking fix
This commit is contained in:
sriram veeraghanta
2023-12-20 14:01:39 +05:30
committed by GitHub
2 changed files with 22 additions and 0 deletions
+14
View File
@@ -3,10 +3,24 @@ require("dotenv").config({ path: ".env" });
const { withSentryConfig } = require("@sentry/nextjs");
const nextConfig = {
async headers() {
return [
{
source: "/",
headers: [{ key: "X-Frame-Options", value: "SAMEORIGIN" }],
},
];
},
basePath: process.env.NEXT_PUBLIC_DEPLOY_WITH_NGINX === "1" ? "/spaces" : "",
reactStrictMode: false,
swcMinify: true,
images: {
remotePatterns: [
{
protocol: "https",
hostname: "**",
},
],
unoptimized: true,
},
output: "standalone",
+8
View File
@@ -2,6 +2,14 @@ require("dotenv").config({ path: ".env" });
const { withSentryConfig } = require("@sentry/nextjs");
const nextConfig = {
async headers() {
return [
{
source: "/(.*)?",
headers: [{ key: "X-Frame-Options", value: "SAMEORIGIN" }],
},
];
},
reactStrictMode: false,
swcMinify: true,
images: {