Add apple-app-site-association file
This commit is contained in:
parent
a97063f9b7
commit
ec8cc533ab
4 changed files with 30 additions and 2 deletions
BIN
site/bun.lockb
Executable file
BIN
site/bun.lockb
Executable file
Binary file not shown.
|
|
@ -1,6 +1,13 @@
|
|||
/** @type {import('next').NextConfig} */
|
||||
const nextConfig = {
|
||||
output: "export",
|
||||
headers() {
|
||||
return [
|
||||
{
|
||||
source: "/.well-known/apple-app-site-association",
|
||||
headers: [{ key: "Content-Type", value: "application/json" }],
|
||||
}
|
||||
];
|
||||
}
|
||||
};
|
||||
|
||||
module.exports = nextConfig;
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"name": "site",
|
||||
"name": "burrow",
|
||||
"version": "0.1.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
|
|
|
|||
21
site/public/.well-known/apple-app-site-association
Normal file
21
site/public/.well-known/apple-app-site-association
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"applinks": {
|
||||
"details": [
|
||||
{
|
||||
"appIDs": [
|
||||
"P6PV2R9443.com.hackclub.burrow"
|
||||
],
|
||||
"components": [
|
||||
{
|
||||
"/": "/callback/*"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"webcredentials": {
|
||||
"apps": [
|
||||
"P6PV2R9443.com.hackclub.burrow"
|
||||
]
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue