feat(dashboard): setting up layout

This commit is contained in:
2025-11-12 16:51:59 +02:00
parent b8b2a15ee9
commit a3f46b6b38
61 changed files with 2957 additions and 123 deletions
+17 -1
View File
@@ -1,6 +1,22 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
transpilePackages: ["@basango/ui"],
devIndicators: false,
async headers() {
return [
{
headers: [
{
key: "X-Frame-Options",
value: "DENY",
},
],
source: "/((?!api/proxy).*)",
},
];
},
poweredByHeader: false,
reactStrictMode: true,
transpilePackages: ["@basango/ui", "@basango/api"],
};
export default nextConfig;