torben fronted wiederhergestellt

This commit is contained in:
2025-04-01 12:01:57 +02:00
parent 1f6feafecc
commit cef6abec32
122 changed files with 14055 additions and 5096 deletions

View File

@@ -1,4 +1,26 @@
/** @type {import('next').NextConfig} */
const nextConfig = {};
const nextConfig = {
async headers() {
return [
{
source: "/:path*",
headers: [
{
key: "Access-Control-Allow-Origin",
value: "m040tbaraspi001.de040.corpintra.net",
},
{
key: "Access-Control-Allow-Methods",
value: "GET, POST, PUT, DELETE, OPTIONS",
},
{
key: "Access-Control-Allow-Headers",
value: "Content-Type, Authorization",
},
],
},
];
},
};
export default nextConfig;