diff --git a/next.config.js b/next.config.js index 327cfc66..4c276394 100644 --- a/next.config.js +++ b/next.config.js @@ -6,6 +6,28 @@ const nextConfig = { experimental: { outputStandalone: true, }, + async headers() { + return [ + { + // + source: "/manifest.json", + headers: [ + { + key: "Access-Control-Allow-Origin", + value: 'https://app.safe.global', + }, + { + key: "Access-Control-Allow-Methods", + value: 'GET', + }, + { + key: "Access-Control-Allow-Headers", + value: 'X-Requested-With, content-type, Authorization', + }, + ] + } + ] +} }; module.exports = nextConfig;