Skip to content

Commit f56a3b7

Browse files
chore: add dev script to package.json and update turbo build inputs
1 parent 889c59a commit f56a3b7

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

apps/web/src/app/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const geistMono = Geist_Mono({
2020
});
2121

2222
const ogImage =
23-
"https://api.screenshothis.com/v1/screenshots/take?api_key=ss_live_NQJgRXqHcKPwnoMTuQmgiwLIGbVfihjpMyQhgsaMyNBHTyesvrxpYNXmdgcnxipc&url=https%3A%2F%2Fbetter-t-stack.dev%2F&width=1200&height=630&block_ads=true&block_cookie_banners=true&block_trackers=true&device_scale_factor=0.70&prefers_color_scheme=dark&is_cached=true&cache_key=bts";
23+
"https://api.screenshothis.com/v1/screenshots/take?api_key=ss_live_NQJgRXqHcKPwnoMTuQmgiwLIGbVfihjpMyQhgsaMyNBHTyesvrxpYNXmdgcnxipc&url=https%3A%2F%2Fbetter-t-stack.dev%2F&width=1200&height=630&block_ads=true&block_cookie_banners=true&block_trackers=true&device_scale_factor=0.65&prefers_color_scheme=dark&is_cached=true&cache_key=cbts";
2424

2525
export const metadata: Metadata = {
2626
title: "Better-T Stack",

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"private": true,
44
"scripts": {
55
"build": "turbo build",
6+
"dev": "turbo dev",
67
"dev:cli": "turbo run dev --filter=create-better-t-stack",
78
"cli": "cd apps/cli && node dist/index.js",
89
"dev:web": "turbo run dev --filter=web",
@@ -37,4 +38,4 @@
3738
"apps/*",
3839
"packages/*"
3940
]
40-
}
41+
}

turbo.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44
"tasks": {
55
"build": {
66
"dependsOn": ["^build"],
7-
"inputs": ["$TURBO_DEFAULT$", ".env*"],
8-
"env": ["PROD", "CONVEX_DEPLOY_KEY", "NEXT_PUBLIC_CONVEX_URL", "NEXT_PUBLIC_POSTHOG_KEY", "NEXT_PUBLIC_POSTHOG_HOST"],
7+
"inputs": ["$TURBO_DEFAULT$"],
98
"outputs": [".next/**", "!.next/cache/**"]
109
},
1110
"lint": {

0 commit comments

Comments
 (0)