Skip to content

Commit f5cf196

Browse files
committed
update img links
1 parent e130c4a commit f5cf196

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

content/200-orm/800-more/600-help-and-troubleshooting/100-autocompletion-in-graphql-resolvers-with-js.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ filterPosts: (parent, args, ctx) => {
2727

2828
Now whenever you type `ctx.` VS Code will provide unnecessary options in the autocomplete which is undesirable.
2929

30-
![Unwanted autocomplete values by VSCode](./unwanted-autocomplete-values-in-vscode.png)
30+
![Unwanted autocomplete values by VSCode](/img/orm/unwanted-autocomplete-values-in-vscode.png)
3131

3232
VS Code doesn't know the _type_ of the `context` object so it can't provide any intellisense for it, which is why unwanted suggestions are displayed.
3333

@@ -69,7 +69,7 @@ This will tell VS Code that the `context` has a property named `prisma` and the
6969

7070
And voilà, autocompletion in plain JavaScript.
7171

72-
![The correct parameters for context are obtained](./prisma-autocompletion-in-js.png)
72+
![The correct parameters for context are obtained](/img/orm/prisma-autocompletion-in-js.png)
7373

7474
The final file should look something like:
7575

content/200-orm/800-more/600-help-and-troubleshooting/600-vercel-caching-issue.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@ Another way to configure `prisma generate` to be run on every deployment is to a
9696

9797
Within your project's dashboard, go to the **Settings** tab and find the **General** section. In that section you will find a box labeled **Build & Development Settings** that contains an input field named **Build Command**:
9898

99-
![Vercel project dashboard's Build Command setting](./vercel-ui-build-command.png)
99+
![Vercel project dashboard's Build Command setting](/img/orm/vercel-ui-build-command.png)
100100

101101
Within that field, prepend `prisma generate` to the existing script:
102102

103-
![Vercel project dashboard's Build Command setting filled](./vercel-ui-build-command-filled.png)
103+
![Vercel project dashboard's Build Command setting filled](/img/orm/vercel-ui-build-command-filled.png)

content/200-orm/800-more/600-help-and-troubleshooting/700-netlify-caching-issue.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@ Within your project's dashboard, go to the **Site Settings** tab and find the **
9898

9999
Find the box in that section labeled **Build settings** and click the **Edit settings** button:
100100

101-
![Netlify project dashboard's Build settings button](./netlify-edit-settings.png)
101+
![Netlify project dashboard's Build settings button](/img/orm/netlify-edit-settings.png)
102102

103103
Clicking that button will open a form with various fields. Find the **Build command** field and prepend `prisma generate` to the existing script:
104104

105-
![Netlify project dashboard's Build command setting filled](./netlify-build-command-filled.png)
105+
![Netlify project dashboard's Build command setting filled](/img/orm/netlify-build-command-filled.png)

0 commit comments

Comments
 (0)