mirror of
https://github.com/vitejs/vite.git
synced 2024-11-22 07:09:05 +00:00
9 lines
258 B
HTML
9 lines
258 B
HTML
|
<div class="css-deps">should be red</div>
|
||
|
|
||
|
<script type="module">
|
||
|
import './main.css'
|
||
|
// Import dep.js so that not only the CSS depends on dep.js, as Vite will do
|
||
|
// a full page reload if the only importers are CSS files.
|
||
|
import './dep.js'
|
||
|
</script>
|