Skip to content

Commit

Permalink
fix(cryptothrone.com): adjusting the build requirements and minor twe…
Browse files Browse the repository at this point in the history
…aks.
  • Loading branch information
h0lybyte committed Nov 8, 2024
1 parent 5bc973a commit c85be55
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions apps/cryptothrone.com/astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import { fileURLToPath } from 'node:url';

// https://astro.build/config
export default defineConfig({
site: 'https://cryptothrone.com',
outDir: '../../dist/apps/cryptothrone.com',
integrations: [
react(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ const DiceRollMessage: React.FC<{ npcName: string, roll: number | null }> = ({ n
<div>
<h2 className="text-lg text-yellow-400 font-bold mb-4">Steal Attempt</h2>
<p className="mb-4">
Roll the dice to steal from {npcName}. You need a total of 12 or higher to succeed.
Roll the dice to steal from {npcName}. You need a total of 17 or higher to succeed.
</p>
{roll !== null && (
<p className="mb-4">
Expand Down
1 change: 1 addition & 0 deletions apps/cryptothrone.com/src/env.d.ts
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
/// <reference path="../.astro/types.d.ts" />
/// <reference types="astro/client" />
3 changes: 2 additions & 1 deletion apps/cryptothrone.com/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@
],
"paths": {
"@kbve/astropad": ["../../packages/astropad/index.ts"],
"@kbve/laser": ["../../packages/laser/src/index.ts"]
"@kbve/laser": ["../../packages/laser/src/index.ts"],
"@kbve/khashvault": ["../../packages/khashvault/src/index.ts"],
}
},
"include": ["src"]
Expand Down

0 comments on commit c85be55

Please sign in to comment.