-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
At least until a matching import is found, still bail on the first one for optimization simplicity reasons. Fixes #818
- Loading branch information
Showing
4 changed files
with
101 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<div class="{styles.wrapper}"> | ||
<h1 class="{styles.hd}">Head</h1> | ||
<div class="{styles.bd}"> | ||
<p class="{bool ? styles.text : styles.active }">Text</p> | ||
</div> | ||
</div> | ||
|
||
<script context="module"> | ||
export const prerender = true; | ||
</script> | ||
|
||
<script> | ||
import styles from "./external.css"; | ||
const bool = false; | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters