File tree Expand file tree Collapse file tree 8 files changed +17
-12
lines changed Expand file tree Collapse file tree 8 files changed +17
-12
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " create-better-t-stack " : patch
3
+ ---
4
+
5
+ update domain
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ This repository is organized as a monorepo containing:
39
39
40
40
## Documentation
41
41
42
- Visit [ better-t-stack.amanv. dev] ( https://better-t-stack.amanv .dev ) for full documentation, guides, and examples.
42
+ Visit [ better-t-stack.dev] ( https://better-t-stack.dev ) for full documentation, guides, and examples.
43
43
44
44
## Development
45
45
Original file line number Diff line number Diff line change 43
43
"url" : " git+https://github.com/AmanVarshney01/create-better-t-stack.git" ,
44
44
"directory" : " apps/cli"
45
45
},
46
- "homepage" : " https://better-t-stack.amanv. dev/" ,
46
+ "homepage" : " https://better-t-stack.dev/" ,
47
47
"scripts" : {
48
48
"build" : " tsdown" ,
49
49
"dev" : " tsdown --watch" ,
Original file line number Diff line number Diff line change @@ -317,7 +317,7 @@ const router = t.router({
317
317
docs : t . procedure
318
318
. meta ( { description : "Open Better-T Stack documentation" } )
319
319
. mutation ( async ( ) => {
320
- const DOCS_URL = "https://better-t-stack.amanv. dev/docs" ;
320
+ const DOCS_URL = "https://better-t-stack.dev/docs" ;
321
321
try {
322
322
await openUrl ( DOCS_URL ) ;
323
323
log . success ( pc . blue ( "Opened docs in your default browser." ) ) ;
@@ -328,7 +328,7 @@ const router = t.router({
328
328
builder : t . procedure
329
329
. meta ( { description : "Open the web-based stack builder" } )
330
330
. mutation ( async ( ) => {
331
- const BUILDER_URL = "https://better-t-stack.amanv. dev/new" ;
331
+ const BUILDER_URL = "https://better-t-stack.dev/new" ;
332
332
try {
333
333
await openUrl ( BUILDER_URL ) ;
334
334
log . success ( pc . blue ( "Opened builder in your default browser." ) ) ;
Original file line number Diff line number Diff line change @@ -44,4 +44,4 @@ To learn more about the technologies used in this website:
44
44
45
45
- [ Next.js Documentation] ( https://nextjs.org/docs ) - Next.js features and API
46
46
- [ Fumadocs] ( https://fumadocs.vercel.app ) - The documentation framework used
47
- - [ Better-T-Stack] ( https://better-t-stack.amanv. dev ) - Main project site
47
+ - [ Better-T-Stack] ( https://better-t-stack.dev ) - Main project site
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ export const metadata: Metadata = {
22
22
keywords : [
23
23
"TypeScript" ,
24
24
"project scaffolding" ,
25
- "biolerplate " ,
25
+ "boilerplate " ,
26
26
"type safety" ,
27
27
"Drizzle" ,
28
28
"Prisma" ,
@@ -46,15 +46,15 @@ export const metadata: Metadata = {
46
46
email : false ,
47
47
telephone : false ,
48
48
} ,
49
- metadataBase : new URL ( "https://better-t-stack.amanv. dev" ) ,
49
+ metadataBase : new URL ( "https://better-t-stack.dev" ) ,
50
50
alternates : {
51
51
canonical : "/" ,
52
52
} ,
53
53
openGraph : {
54
54
title : "Better-T Stack" ,
55
55
description :
56
56
"A modern CLI tool for scaffolding end-to-end type-safe TypeScript projects with best practices and customizable configurations" ,
57
- url : "https://better-t-stack.amanv. dev" ,
57
+ url : "https://better-t-stack.dev" ,
58
58
siteName : "Better-T Stack" ,
59
59
images : [
60
60
{
Original file line number Diff line number Diff line change @@ -8,6 +8,6 @@ export default function robots(): MetadataRoute.Robots {
8
8
allow : "/" ,
9
9
disallow : "/private/" ,
10
10
} ,
11
- sitemap : "https://better-t-stack.amanv. dev/sitemap.xml" ,
11
+ sitemap : "https://better-t-stack.dev/sitemap.xml" ,
12
12
} ;
13
13
}
Original file line number Diff line number Diff line change @@ -4,19 +4,19 @@ import type { MetadataRoute } from "next";
4
4
export default function sitemap ( ) : MetadataRoute . Sitemap {
5
5
return [
6
6
{
7
- url : "https://better-t-stack.amanv. dev/" ,
7
+ url : "https://better-t-stack.dev/" ,
8
8
lastModified : new Date ( ) ,
9
9
changeFrequency : "weekly" ,
10
10
priority : 1 ,
11
11
} ,
12
12
{
13
- url : "https://better-t-stack.amanv. dev/new" ,
13
+ url : "https://better-t-stack.dev/new" ,
14
14
lastModified : new Date ( ) ,
15
15
changeFrequency : "weekly" ,
16
16
priority : 0.8 ,
17
17
} ,
18
18
{
19
- url : "https://better-t-stack.amanv. dev/docs" ,
19
+ url : "https://better-t-stack.dev/docs" ,
20
20
lastModified : new Date ( ) ,
21
21
changeFrequency : "weekly" ,
22
22
priority : 0.5 ,
You can’t perform that action at this time.
0 commit comments