Skip to content

Commit

Permalink
Merge branch 'V4' into feat/sign-2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
tomiir authored May 7, 2024
2 parents 4e4b871 + 5f7ba24 commit 17651b0
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion apps/laboratory/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,15 @@ const nextConfig = {
reactStrictMode: true,
trailingSlash: true,
distDir: 'out',
cleanDistDir: true
cleanDistDir: true,
async headers() {
return [
{
source: '/.well-known/apple-app-site-association',
headers: [{ key: 'content-type', value: 'application/json' }]
}
]
}
}

module.exports = nextConfig

0 comments on commit 17651b0

Please sign in to comment.