burrow/site/next.config.js
2024-03-30 17:18:46 -07:00

13 lines
279 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
headers() {
return [
{
source: "/.well-known/apple-app-site-association",
headers: [{ key: "Content-Type", value: "application/json" }],
}
];
}
};
module.exports = nextConfig;