vite/docs/index.md

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

48 lines
2.3 KiB
Markdown
Raw Permalink Normal View History

2021-01-01 21:40:16 +00:00
---
title: Vite
titleTemplate: Next Generation Frontend Tooling
pageClass: landing dark
layout: home
aside: false
editLink: false
markdownStyles: false
2021-01-12 05:20:05 +00:00
---
2024-05-03 17:39:04 +00:00
<script setup>
import Hero from '.vitepress/theme/components/landing/1. hero-section/HeroSection.vue'
import FeatureSection from './.vitepress/theme/components/landing/2. feature-section/FeatureSection.vue'
import FrameworksSection from './.vitepress/theme/components/landing/3. frameworks-section/FrameworksSection.vue'
import CommunitySection from './.vitepress/theme/components/landing/4. community-section/CommunitySection.vue'
import SponsorSection from './.vitepress/theme/components/landing/5. sponsor-section/SponsorSection.vue'
import GetStartedSection from '.vitepress/theme/components/landing/6. get-started-section/GetStartedSection.vue'
import FeatureInstantServerStart from './.vitepress/theme/components/landing/2. feature-section/FeatureInstantServerStart.vue'
import FeatureHMR from './.vitepress/theme/components/landing/2. feature-section/FeatureHMR.vue'
import FeatureRichFeatures from './.vitepress/theme/components/landing/2. feature-section/FeatureRichFeatures.vue'
import FeatureOptimizedBuild from './.vitepress/theme/components/landing/2. feature-section/FeatureOptimizedBuild.vue'
import FeatureFlexiblePlugins from './.vitepress/theme/components/landing/2. feature-section/FeatureFlexiblePlugins.vue'
import FeatureTypedAPI from './.vitepress/theme/components/landing/2. feature-section/FeatureTypedAPI.vue'
import FeatureSSRSupport from './.vitepress/theme/components/landing/2. feature-section/FeatureSSRSupport.vue'
import FeatureCI from './.vitepress/theme/components/landing/2. feature-section/FeatureCI.vue'
2024-05-03 17:39:04 +00:00
</script>
<div class="VPHome">
<Hero/>
<FeatureSection title="Redefining developer experience" description="Vite makes web development simple again" type="blue">
<FeatureInstantServerStart />
<FeatureHMR />
<FeatureRichFeatures />
<FeatureOptimizedBuild />
</FeatureSection>
<FeatureSection title="A shared foundation to build upon" type="pink" class="feature-section--flip">
<FeatureFlexiblePlugins />
<FeatureTypedAPI />
<FeatureSSRSupport />
<FeatureCI />
</FeatureSection>
<FrameworksSection />
<CommunitySection />
<SponsorSection />
<GetStartedSection />
</div>