mirror of
https://github.com/Snouzy/workout-cool.git
synced 2026-05-19 14:40:35 +00:00
88517578ce
* feat: leaderboard page * refactor: simplify leaderboard fetching logic * refactor: separated leaderboard concerns * fix(scritps): use enum in seed leadarboard * fix(lint): remove unused translation prop * lint: rollback import plugin * feat(leaderboard): enhance UI with member dates and dicebear avatars * fix(leaderboard): correct use top users hook * feat(leaderboard): cleaned date related and unused code
22 lines
473 B
TypeScript
22 lines
473 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
reactStrictMode: true,
|
|
images: {
|
|
unoptimized: true,
|
|
domains: ["lh3.googleusercontent.com", "192.168.1.12", "localhost", "www.facebook.com", "api.dicebear.com"],
|
|
remotePatterns: [
|
|
{
|
|
protocol: "https",
|
|
hostname: "**.vercel.app",
|
|
},
|
|
{
|
|
protocol: "https",
|
|
hostname: "api.dicebear.com",
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|