index.html — vite Source File
Architecture documentation for index.html, a html file in the vite codebase.
Entity Profile
Source Code
<link rel="stylesheet" href="./linked.css" />
<link rel="stylesheet" href="./linked-with-import.css" />
<style>
.inline {
color: red;
}
</style>
<div class="wrapper">
<h1>CSS Sourcemap</h1>
<p class="inline"><inline></p>
<p class="linked"><linked>: no import</p>
<p class="linked-with-import"><linked>: with import</p>
<p class="imported"><imported>: no import</p>
<p class="imported-with-import"><imported>: with import</p>
<p class="imported-sass"><imported sass></p>
<p class="imported-sass-module"><imported sass> with module</p>
<p class="imported-less"><imported less> with string additionalData</p>
<p class="imported-stylus"><imported stylus></p>
<p class="imported-sugarss"><imported sugarss></p>
<p class="input-map"><input source-map></p>
</div>
<script type="module">
import './imported.css'
import './imported-with-import.css'
import './imported.sass'
import sassModule from './imported.module.sass'
document
.querySelector('.imported-sass-module')
.classList.add(sassModule['imported-sass-module'])
import './imported.less'
import './imported.styl'
import './imported.sss'
import './input-map.css'
</script>
<iframe src="virtual.html"></iframe>
Source
Frequently Asked Questions
What does index.html do?
index.html is a source file in the vite codebase, written in html.
Where is index.html in the architecture?
index.html is located at playground/css-sourcemap/index.html (directory: playground/css-sourcemap).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free