2025-11-28 12:54:33 -08:00
|
|
|
/** @type {import('next').NextConfig} */
|
|
|
|
|
const nextConfig = {
|
|
|
|
|
reactStrictMode: true,
|
|
|
|
|
swcMinify: true,
|
2026-03-25 20:46:57 -07:00
|
|
|
|
2025-11-28 12:54:33 -08:00
|
|
|
// Environment variables
|
|
|
|
|
env: {
|
|
|
|
|
NEXT_PUBLIC_CROSSPLANE_API: process.env.NEXT_PUBLIC_CROSSPLANE_API,
|
|
|
|
|
NEXT_PUBLIC_ARGOCD_URL: process.env.NEXT_PUBLIC_ARGOCD_URL,
|
|
|
|
|
NEXT_PUBLIC_GRAFANA_URL: process.env.NEXT_PUBLIC_GRAFANA_URL,
|
|
|
|
|
NEXT_PUBLIC_LOKI_URL: process.env.NEXT_PUBLIC_LOKI_URL,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// Headers for security
|
|
|
|
|
async headers() {
|
|
|
|
|
return [
|
|
|
|
|
{
|
|
|
|
|
source: '/:path*',
|
|
|
|
|
headers: [
|
|
|
|
|
{
|
|
|
|
|
key: 'X-DNS-Prefetch-Control',
|
|
|
|
|
value: 'on',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
key: 'Strict-Transport-Security',
|
|
|
|
|
value: 'max-age=63072000; includeSubDomains; preload',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
key: 'X-Frame-Options',
|
|
|
|
|
value: 'DENY',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
key: 'X-Content-Type-Options',
|
|
|
|
|
value: 'nosniff',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
key: 'X-XSS-Protection',
|
|
|
|
|
value: '1; mode=block',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
key: 'Referrer-Policy',
|
|
|
|
|
value: 'strict-origin-when-cross-origin',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
key: 'Permissions-Policy',
|
|
|
|
|
value: 'camera=(), microphone=(), geolocation=()',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
key: 'Content-Security-Policy',
|
|
|
|
|
value: [
|
|
|
|
|
"default-src 'self'",
|
|
|
|
|
"script-src 'self' 'unsafe-eval' 'unsafe-inline'",
|
|
|
|
|
"style-src 'self' 'unsafe-inline'",
|
|
|
|
|
"img-src 'self' data: https:",
|
|
|
|
|
"font-src 'self' data:",
|
|
|
|
|
"connect-src 'self' https:",
|
|
|
|
|
].join('; '),
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
];
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// Rewrites for API proxying
|
|
|
|
|
async rewrites() {
|
2026-07-07 09:41:34 -07:00
|
|
|
const apiBase =
|
|
|
|
|
process.env.SANKOFA_PHOENIX_API_INTERNAL_URL ||
|
|
|
|
|
process.env.NEXT_PUBLIC_PHOENIX_API_INTERNAL_URL ||
|
|
|
|
|
'http://192.168.11.50:8080';
|
|
|
|
|
const crossplaneBase = process.env.NEXT_PUBLIC_CROSSPLANE_API || 'http://localhost:8080';
|
2025-11-28 12:54:33 -08:00
|
|
|
return [
|
2026-07-07 09:41:34 -07:00
|
|
|
{
|
|
|
|
|
source: '/graphql',
|
|
|
|
|
destination: `${apiBase.replace(/\/$/, '')}/graphql`,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
source: '/api/v1/:path*',
|
|
|
|
|
destination: `${apiBase.replace(/\/$/, '')}/api/v1/:path*`,
|
|
|
|
|
},
|
2025-11-28 12:54:33 -08:00
|
|
|
{
|
|
|
|
|
source: '/api/crossplane/:path*',
|
2026-07-07 09:41:34 -07:00
|
|
|
destination: `${crossplaneBase}/:path*`,
|
2025-11-28 12:54:33 -08:00
|
|
|
},
|
2026-06-11 01:27:05 -07:00
|
|
|
{
|
|
|
|
|
source: '/favicon.ico',
|
|
|
|
|
destination: '/icon',
|
|
|
|
|
},
|
2025-11-28 12:54:33 -08:00
|
|
|
];
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
module.exports = nextConfig;
|
|
|
|
|
|