forked from github/plane
48 lines
1.1 KiB
JavaScript
48 lines
1.1 KiB
JavaScript
/* eslint-disable @typescript-eslint/no-var-requires */
|
|
require("dotenv").config({ path: ".env" });
|
|
const { withSentryConfig } = require("@sentry/nextjs");
|
|
|
|
const nextConfig = {
|
|
reactStrictMode: false,
|
|
swcMinify: true,
|
|
output: "standalone",
|
|
async headers() {
|
|
return [
|
|
{
|
|
source: "/(.*)?",
|
|
headers: [{ key: "X-Frame-Options", value: "SAMEORIGIN" }],
|
|
},
|
|
];
|
|
},
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: "https",
|
|
hostname: "**",
|
|
},
|
|
],
|
|
unoptimized: true,
|
|
},
|
|
async rewrites() {
|
|
return [
|
|
{
|
|
source: "/ingest/static/:path*",
|
|
destination: "https://us-assets.i.posthog.com/static/:path*",
|
|
},
|
|
{
|
|
source: "/ingest/:path*",
|
|
destination: "https://us.i.posthog.com/:path*",
|
|
},
|
|
]
|
|
}
|
|
};
|
|
|
|
if (parseInt(process.env.NEXT_PUBLIC_ENABLE_SENTRY || "0", 10)) {
|
|
module.exports = withSentryConfig(nextConfig,
|
|
{ silent: true, authToken: process.env.SENTRY_AUTH_TOKEN },
|
|
{ hideSourceMaps: true }
|
|
);
|
|
} else {
|
|
module.exports = nextConfig;
|
|
}
|