Skip to content

Commit decd01b

Browse files
🩹 fix(IndexPage): No need read access when loadEndpoints
1 parent cf0fd58 commit decd01b

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/pages/landing.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -293,12 +293,11 @@ await main();`}
293293
<div className={styles.stepCard}>
294294
<h3 className={styles.stepTitle}>3. Run Your App</h3>
295295
<pre className={styles.codeBlock}>
296-
<code>deno run --watch --allow-net --allow-read --allow-env main.ts</code>
296+
<code>deno run --watch --allow-net --allow-env main.ts</code>
297297
</pre>
298298
<ul>
299299
<li><kbd>--watch:</kbd> Automatically reloads server when changes are made</li>
300300
<li><kbd>--allow-net:</kbd> Permits network access for serving</li>
301-
<li><kbd>--allow-read:</kbd> Allows file access for loading endpoints</li>
302301
<li><kbd>--allow-env:</kbd> Checking where is deployed for Deno Deploy</li>
303302
</ul>
304303
</div>

0 commit comments

Comments
 (0)