Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/docs/md/conventions/browser.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: Browser
---

The `app/browser` directory is where JavaScript files for the browser live. These JavaScript files can import other modules from your project as well as any installed packages that can run in the browser. Files in the `app/browser` directory will be bundled to the `/public/browser/` directory in your project and will be exposed the to browser at `/_public/browser/` for loading by script tags.
The `app/browser` directory is where JavaScript files for the browser live. These JavaScript files can import other modules from your project as well as any installed packages that can run in the browser. Files in the `app/browser` directory will be bundled to the `/public/browser/` directory in your project and will be exposed to the browser at `/_public/browser/` for loading by script tags.

```javascript
<script type="module" src="/_public/browser/my-file.mjs"></script>
Expand Down