diff --git a/holium-com/next.config.js b/holium-com/next.config.js index 8ab1606863..29a85f6e6f 100644 --- a/holium-com/next.config.js +++ b/holium-com/next.config.js @@ -9,6 +9,19 @@ const nextConfig = { publicRuntimeConfig: { AMPLITUDE_API_KEY: process.env.AMPLITUDE_API_KEY, }, + async headers() { + return [ + { + source: '/.well-known/apple-app-site-association', + headers: [ + { + key: 'Content-Type', + value: 'application/json', + }, + ], + }, + ]; + }, }; module.exports = withPreconstruct(nextConfig); diff --git a/holium-com/public/.well-known/apple-app-site-association b/holium-com/public/.well-known/apple-app-site-association new file mode 100644 index 0000000000..270361b719 --- /dev/null +++ b/holium-com/public/.well-known/apple-app-site-association @@ -0,0 +1,13 @@ +{ + "applinks": { + "apps": [], + "details": [ + { + "appID": "6X55DB3B3J.com.holium.realm", + "paths": [ + "/wc/*" + ] + } + ] + } +}