Skip to content

Commit

Permalink
fix: local gnosis-safe
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanbenoit-richez committed Nov 16, 2023
1 parent efd7689 commit 994ad8b
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;

0 comments on commit 994ad8b

Please sign in to comment.