Skip to content

Commit 64e4afb

Browse files
Page for Actions (#34)
* feat: add API to fetch actions * feat: add table for past games, favicon and more * fix: stop space from scrolling page * fix: view metadata, decrease game over wait time * add randomness in rocks * add output mode export back
1 parent 5d4ee19 commit 64e4afb

28 files changed

+672
-91
lines changed

game/components.json

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"$schema": "https://ui.shadcn.com/schema.json",
3+
"style": "default",
4+
"rsc": true,
5+
"tsx": true,
6+
"tailwind": {
7+
"config": "tailwind.config.ts",
8+
"css": "src/app/globals.css",
9+
"baseColor": "black",
10+
"cssVariables": true,
11+
"prefix": ""
12+
},
13+
"aliases": {
14+
"components": "@/components",
15+
"utils": "@/lib/utils"
16+
}
17+
}

game/next.config.mjs

+9
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,15 @@ const nextConfig = {
77
config.externals.push("pino-pretty", "lokijs", "encoding");
88
return config;
99
},
10+
images: {
11+
remotePatterns: [
12+
{
13+
protocol: "https",
14+
hostname: "assets.stackrlabs.xyz",
15+
pathname: "/**",
16+
},
17+
],
18+
},
1019
};
1120

1221
export default nextConfig;

0 commit comments

Comments
 (0)