Premier commit de la v2 de l'app

This commit is contained in:
UltraLionFr
2025-07-29 05:15:33 +02:00
parent 2f14898357
commit b593c60ab2
67 changed files with 5003 additions and 388 deletions
+22 -2
View File
@@ -1,7 +1,27 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
images: {
remotePatterns: [
{
protocol: "https",
hostname: "cdn.discordapp.com",
},
{
protocol: "https",
hostname: "mc-heads.net",
},
],
},
async redirects() {
return [
{
source: "/@:username",
destination: "/user/:username",
permanent: true,
},
];
},
};
export default nextConfig;
export default nextConfig;