feat: add steam game search

This commit is contained in:
2026-04-25 21:37:34 +08:00
parent e03a4081ae
commit 6415200f34
11 changed files with 1188 additions and 18 deletions
+16
View File
@@ -3,6 +3,22 @@ import type { NextConfig } from "next";
const nextConfig: NextConfig = {
// Elysia is Bun-native and must not be bundled by Next.js
serverExternalPackages: ["elysia", "@elysiajs/eden"],
images: {
remotePatterns: [
{
protocol: "https",
hostname: "cdn.akamai.steamstatic.com",
port: "",
pathname: "/steam/apps/**",
},
{
protocol: "https",
hostname: "shared.akamai.steamstatic.com",
port: "",
pathname: "/store_item_assets/**",
},
],
},
};
export default nextConfig;