index.html — vite Source File
Architecture documentation for index.html, a html file in the vite codebase.
Entity Profile
Source Code
<h1>Optimize Deps</h1>
<h2>Optimized Dep</h2>
<div class="optimized-dep"></div>
<h2>Vue & Vuex</h2>
<div class="vue"></div>
<script>
function text(el, text) {
document.querySelector(el).textContent = text
}
</script>
<script type="module">
import msg from '@vitejs/test-dep-no-discovery'
text('.optimized-dep', msg)
import { createApp } from 'vue'
import { createStore } from 'vuex'
if (typeof createApp === 'function' && typeof createStore === 'function') {
text('.vue', '[success]')
}
</script>
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/optimize-deps-no-discovery/index.html (directory: playground/optimize-deps-no-discovery).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free