We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf0fd58 commit decd01bCopy full SHA for decd01b
1 file changed
src/pages/landing.tsx
@@ -293,12 +293,11 @@ await main();`}
293
<div className={styles.stepCard}>
294
<h3 className={styles.stepTitle}>3. Run Your App</h3>
295
<pre className={styles.codeBlock}>
296
- <code>deno run --watch --allow-net --allow-read --allow-env main.ts</code>
+ <code>deno run --watch --allow-net --allow-env main.ts</code>
297
</pre>
298
<ul>
299
<li><kbd>--watch:</kbd> Automatically reloads server when changes are made</li>
300
<li><kbd>--allow-net:</kbd> Permits network access for serving</li>
301
- <li><kbd>--allow-read:</kbd> Allows file access for loading endpoints</li>
302
<li><kbd>--allow-env:</kbd> Checking where is deployed for Deno Deploy</li>
303
</ul>
304
</div>
0 commit comments