Skip to content

Commit e892dad

Browse files
authored
docs: correct link to 'tsx' repo (#668)
1 parent a2dff7c commit e892dad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

www/src/pages/en/usage/prisma.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ The default database is a SQLite database, which is great for development and qu
2424

2525
## Seeding your Database
2626

27-
[Seeding your database](https://www.prisma.io/docs/guides/database/seed-database) is a great way to quickly populate your database with test data to help you get started. In order to setup seeding, you will need to create a `seed.ts` file in the `/prisma` directory, and then add a `seed` script to your `package.json` file. You'll also need some TypeScript runner that can execute the seed-script. We recommend [tsx](https://github.com/esbuild/tsx), which is a very performant TypeScript runner that uses esbuild and doesn't require any ESM configuration, but `ts-node` or other runners will work as well.
27+
[Seeding your database](https://www.prisma.io/docs/guides/database/seed-database) is a great way to quickly populate your database with test data to help you get started. In order to setup seeding, you will need to create a `seed.ts` file in the `/prisma` directory, and then add a `seed` script to your `package.json` file. You'll also need some TypeScript runner that can execute the seed-script. We recommend [tsx](https://github.com/esbuild-kit/tsx), which is a very performant TypeScript runner that uses esbuild and doesn't require any ESM configuration, but `ts-node` or other runners will work as well.
2828

2929
```jsonc:package.json
3030
{

0 commit comments

Comments
 (0)