Skip to content

Commit

Permalink
Page for Actions (#34)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
aashutoshrathi authored Aug 4, 2024
1 parent 5d4ee19 commit 64e4afb
Show file tree
Hide file tree
Showing 28 changed files with 672 additions and 91 deletions.
17 changes: 17 additions & 0 deletions game/components.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"$schema": "https://ui.shadcn.com/schema.json",
"style": "default",
"rsc": true,
"tsx": true,
"tailwind": {
"config": "tailwind.config.ts",
"css": "src/app/globals.css",
"baseColor": "black",
"cssVariables": true,
"prefix": ""
},
"aliases": {
"components": "@/components",
"utils": "@/lib/utils"
}
}
9 changes: 9 additions & 0 deletions game/next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ const nextConfig = {
config.externals.push("pino-pretty", "lokijs", "encoding");
return config;
},
images: {
remotePatterns: [
{
protocol: "https",
hostname: "assets.stackrlabs.xyz",
pathname: "/**",
},
],
},
};

export default nextConfig;
Loading

0 comments on commit 64e4afb

Please sign in to comment.