Skip to content
Draft
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
4 changes: 2 additions & 2 deletions site/content/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ Trunk uses a source HTML file to drive all asset building and bundling. Trunk al
```html
<html>
<head>
<link data-trunk rel="scss" href="path/to/index.scss"/>
<link data-trunk rel="scss" href="index.scss"/>
<link data-trunk rel="rust"/>
</head>
</html>
```

The `index.scss` file may be empty but must exist.
The `index.scss` file referenced above may be empty but must exist next to `index.html`.

`trunk build` will produce the following HTML at `dist/index.html`, along with the compiled scss, WASM & the JS loader for the WASM:

Expand Down