feat: favicon and astroneer

This commit is contained in:
2026-07-08 18:39:10 +02:00
parent 82abc317f1
commit b351354436
16 changed files with 440 additions and 27 deletions
+13 -1
View File
@@ -1,7 +1,19 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
async headers() {
return [
{
source: "/:path*",
headers: [
{
key: "X-Robots-Tag",
value: "noindex, nofollow, noarchive, nosnippet, noimageindex",
},
],
},
];
},
};
export default nextConfig;