├── .editorconfig ├── .github ├── CONTRIBUTING.md └── workflows │ ├── ryo-cho.yml │ └── sync-vite-docs.yml ├── .gitignore ├── .prettierrc.json ├── CONTRIBUTING.md ├── GLOSSARY.md ├── LICENSE ├── README.md ├── docs ├── .vitepress │ ├── buildEnd.config.ts │ ├── config.ts │ ├── theme │ │ ├── components │ │ │ ├── AsideSponsors.vue │ │ │ ├── BlogIndex.vue │ │ │ ├── SvgImage.vue │ │ │ ├── YouTubeVideo.vue │ │ │ └── landing │ │ │ │ ├── 1. hero-section │ │ │ │ ├── HeroDiagram.vue │ │ │ │ ├── HeroSection.vue │ │ │ │ └── svg-elements │ │ │ │ │ ├── SvgBlueIndicator.vue │ │ │ │ │ ├── SvgInputs.vue │ │ │ │ │ ├── SvgOutputs.vue │ │ │ │ │ └── SvgPinkIndicator.vue │ │ │ │ ├── 2. feature-section │ │ │ │ ├── FeatureCI.vue │ │ │ │ ├── FeatureFlexiblePlugins.vue │ │ │ │ ├── FeatureHMR.vue │ │ │ │ ├── FeatureInstantServerStart.vue │ │ │ │ ├── FeatureOptimizedBuild.vue │ │ │ │ ├── FeatureRichFeatures.vue │ │ │ │ ├── FeatureSSRSupport.vue │ │ │ │ ├── FeatureSection.vue │ │ │ │ ├── FeatureTypedAPI.vue │ │ │ │ └── images │ │ │ │ │ ├── css3.svg │ │ │ │ │ ├── js.svg │ │ │ │ │ ├── json.svg │ │ │ │ │ ├── postcss.svg │ │ │ │ │ ├── ts.svg │ │ │ │ │ └── wa.svg │ │ │ │ ├── 3. frameworks-section │ │ │ │ ├── FrameworkCard.vue │ │ │ │ ├── FrameworksSection.vue │ │ │ │ └── images │ │ │ │ │ ├── adonis.svg │ │ │ │ │ ├── analog.svg │ │ │ │ │ ├── angular.svg │ │ │ │ │ ├── astro.svg │ │ │ │ │ ├── ember.svg │ │ │ │ │ ├── hono.svg │ │ │ │ │ ├── laravel.svg │ │ │ │ │ ├── marko.svg │ │ │ │ │ ├── nuxt.svg │ │ │ │ │ ├── playwright.svg │ │ │ │ │ ├── preact.svg │ │ │ │ │ ├── qwik.svg │ │ │ │ │ ├── react.svg │ │ │ │ │ ├── redwood.svg │ │ │ │ │ ├── remix.svg │ │ │ │ │ ├── solid.svg │ │ │ │ │ ├── storybook.svg │ │ │ │ │ ├── svelte.svg │ │ │ │ │ ├── vitest.svg │ │ │ │ │ └── vue.svg │ │ │ │ ├── 4. community-section │ │ │ │ ├── CommunityCard.vue │ │ │ │ └── CommunitySection.vue │ │ │ │ ├── 5. sponsor-section │ │ │ │ ├── SponsorSection.vue │ │ │ │ └── voidzero.svg │ │ │ │ ├── 6. get-started-section │ │ │ │ └── GetStartedSection.vue │ │ │ │ └── common │ │ │ │ └── SvgNode.vue │ │ ├── composables │ │ │ ├── sponsor.ts │ │ │ ├── useCardAnimation.ts │ │ │ └── useSlideIn.ts │ │ ├── fonts │ │ │ └── Estedad[KSHD,wght].woff2 │ │ ├── index.ts │ │ └── styles │ │ │ ├── landing.css │ │ │ ├── overrides.css │ │ │ └── vars.css │ ├── tsconfig.json │ └── vite-env.d.ts ├── _data │ ├── blog.data.ts │ └── team.js ├── blog.md ├── blog │ ├── announcing-vite2.md │ ├── announcing-vite3.md │ ├── announcing-vite4-3.md │ ├── announcing-vite4.md │ ├── announcing-vite5-1.md │ ├── announcing-vite5.md │ ├── announcing-vite6.md │ └── announcing-vite7.md ├── changes │ ├── hotupdate-hook.md │ ├── index.md │ ├── per-environment-apis.md │ ├── shared-plugins-during-build.md │ ├── ssr-using-modulerunner.md │ └── this-environment-in-hooks.md ├── config │ ├── build-options.md │ ├── dep-optimization-options.md │ ├── index.md │ ├── preview-options.md │ ├── server-options.md │ ├── shared-options.md │ ├── ssr-options.md │ └── worker-options.md ├── guide │ ├── api-environment-frameworks.md │ ├── api-environment-instances.md │ ├── api-environment-plugins.md │ ├── api-environment-runtimes.md │ ├── api-environment.md │ ├── api-hmr.md │ ├── api-javascript.md │ ├── api-plugin.md │ ├── assets.md │ ├── backend-integration.md │ ├── build.md │ ├── cli.md │ ├── comparisons.md │ ├── dep-pre-bundling.md │ ├── env-and-mode.md │ ├── features.md │ ├── index.md │ ├── migration.md │ ├── performance.md │ ├── philosophy.md │ ├── rolldown.md │ ├── ssr.md │ ├── static-deploy-github-pages.yaml │ ├── static-deploy.md │ ├── troubleshooting.md │ ├── using-plugins.md │ └── why.md ├── images │ ├── bundler.svg │ ├── community │ │ └── placeholder.jpg │ ├── diagrams.fig │ ├── esm.svg │ ├── graph.svg │ ├── lit.svg │ ├── preact.svg │ ├── react.svg │ ├── svelte.svg │ ├── v3-docs.png │ ├── v3-new-open-issues-and-PRs.png │ ├── v3-open-issues-and-PRs.png │ ├── vercel-configuration.png │ ├── vite-3-cold-start.svg │ ├── vite-environments.svg │ ├── vite-plugin-inspect.png │ ├── vite.svg │ └── vue.svg ├── index.md ├── package.json ├── plugins │ └── index.md ├── public │ ├── _headers │ ├── _redirects │ ├── astro.svg │ ├── bolt.svg │ ├── ecosystem-vite4.png │ ├── github.svg │ ├── heart.svg │ ├── logo-home.svg │ ├── logo-uwu.png │ ├── logo-with-shadow.png │ ├── logo.svg │ ├── noise.png │ ├── nuxtlabs.svg │ ├── og-image-announcing-vite3.png │ ├── og-image-announcing-vite4-3.png │ ├── og-image-announcing-vite4.png │ ├── og-image-announcing-vite5-1.png │ ├── og-image-announcing-vite5.png │ ├── og-image-announcing-vite6.png │ ├── og-image-announcing-vite7.png │ ├── og-image.jpg │ ├── stackblitz.svg │ ├── vite.mp3 │ ├── vite4-3-hmr-time.png │ ├── vite4-3-startup-time.png │ ├── vite5-1-10K-modules-loading-time.png │ ├── vite6-npm-weekly-downloads.png │ ├── viteconf.svg │ ├── voice.svg │ └── voidzero.svg ├── releases.md └── team.md ├── package.json ├── pnpm-lock.yaml └── renovate.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/workflows/ryo-cho.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/.github/workflows/ryo-cho.yml -------------------------------------------------------------------------------- /.github/workflows/sync-vite-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/.github/workflows/sync-vite-docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /GLOSSARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/GLOSSARY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/README.md -------------------------------------------------------------------------------- /docs/.vitepress/buildEnd.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/buildEnd.config.ts -------------------------------------------------------------------------------- /docs/.vitepress/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/config.ts -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/AsideSponsors.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/AsideSponsors.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/BlogIndex.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/BlogIndex.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/SvgImage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/SvgImage.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/YouTubeVideo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/YouTubeVideo.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/landing/1. hero-section/HeroDiagram.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/landing/1. hero-section/HeroDiagram.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/landing/1. hero-section/HeroSection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/landing/1. hero-section/HeroSection.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/landing/1. hero-section/svg-elements/SvgBlueIndicator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/landing/1. hero-section/svg-elements/SvgBlueIndicator.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/landing/1. hero-section/svg-elements/SvgInputs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/landing/1. hero-section/svg-elements/SvgInputs.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/landing/1. hero-section/svg-elements/SvgOutputs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/landing/1. hero-section/svg-elements/SvgOutputs.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/landing/1. hero-section/svg-elements/SvgPinkIndicator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/landing/1. hero-section/svg-elements/SvgPinkIndicator.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/landing/2. feature-section/FeatureCI.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/landing/2. feature-section/FeatureCI.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/landing/2. feature-section/FeatureFlexiblePlugins.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/landing/2. feature-section/FeatureFlexiblePlugins.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/landing/2. feature-section/FeatureHMR.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/landing/2. feature-section/FeatureHMR.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/landing/2. feature-section/FeatureInstantServerStart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/landing/2. feature-section/FeatureInstantServerStart.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/landing/2. feature-section/FeatureOptimizedBuild.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/landing/2. feature-section/FeatureOptimizedBuild.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/landing/2. feature-section/FeatureRichFeatures.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/landing/2. feature-section/FeatureRichFeatures.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/landing/2. feature-section/FeatureSSRSupport.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/landing/2. feature-section/FeatureSSRSupport.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/landing/2. feature-section/FeatureSection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/landing/2. feature-section/FeatureSection.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/landing/2. feature-section/FeatureTypedAPI.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/landing/2. feature-section/FeatureTypedAPI.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/landing/2. feature-section/images/css3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/landing/2. feature-section/images/css3.svg -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/landing/2. feature-section/images/js.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/landing/2. feature-section/images/js.svg -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/landing/2. feature-section/images/json.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/landing/2. feature-section/images/json.svg -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/landing/2. feature-section/images/postcss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/landing/2. feature-section/images/postcss.svg -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/landing/2. feature-section/images/ts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/landing/2. feature-section/images/ts.svg -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/landing/2. feature-section/images/wa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/landing/2. feature-section/images/wa.svg -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/landing/3. frameworks-section/FrameworkCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/landing/3. frameworks-section/FrameworkCard.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/landing/3. frameworks-section/FrameworksSection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/landing/3. frameworks-section/FrameworksSection.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/landing/3. frameworks-section/images/adonis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/landing/3. frameworks-section/images/adonis.svg -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/landing/3. frameworks-section/images/analog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/landing/3. frameworks-section/images/analog.svg -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/landing/3. frameworks-section/images/angular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/landing/3. frameworks-section/images/angular.svg -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/landing/3. frameworks-section/images/astro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/landing/3. frameworks-section/images/astro.svg -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/landing/3. frameworks-section/images/ember.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/landing/3. frameworks-section/images/ember.svg -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/landing/3. frameworks-section/images/hono.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/landing/3. frameworks-section/images/hono.svg -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/landing/3. frameworks-section/images/laravel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/landing/3. frameworks-section/images/laravel.svg -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/landing/3. frameworks-section/images/marko.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/landing/3. frameworks-section/images/marko.svg -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/landing/3. frameworks-section/images/nuxt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/landing/3. frameworks-section/images/nuxt.svg -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/landing/3. frameworks-section/images/playwright.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/landing/3. frameworks-section/images/playwright.svg -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/landing/3. frameworks-section/images/preact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/landing/3. frameworks-section/images/preact.svg -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/landing/3. frameworks-section/images/qwik.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/landing/3. frameworks-section/images/qwik.svg -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/landing/3. frameworks-section/images/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/landing/3. frameworks-section/images/react.svg -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/landing/3. frameworks-section/images/redwood.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/landing/3. frameworks-section/images/redwood.svg -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/landing/3. frameworks-section/images/remix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/landing/3. frameworks-section/images/remix.svg -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/landing/3. frameworks-section/images/solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/landing/3. frameworks-section/images/solid.svg -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/landing/3. frameworks-section/images/storybook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/landing/3. frameworks-section/images/storybook.svg -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/landing/3. frameworks-section/images/svelte.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/landing/3. frameworks-section/images/svelte.svg -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/landing/3. frameworks-section/images/vitest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/landing/3. frameworks-section/images/vitest.svg -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/landing/3. frameworks-section/images/vue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/landing/3. frameworks-section/images/vue.svg -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/landing/4. community-section/CommunityCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/landing/4. community-section/CommunityCard.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/landing/4. community-section/CommunitySection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/landing/4. community-section/CommunitySection.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/landing/5. sponsor-section/SponsorSection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/landing/5. sponsor-section/SponsorSection.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/landing/5. sponsor-section/voidzero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/landing/5. sponsor-section/voidzero.svg -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/landing/6. get-started-section/GetStartedSection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/landing/6. get-started-section/GetStartedSection.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/landing/common/SvgNode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/components/landing/common/SvgNode.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/composables/sponsor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/composables/sponsor.ts -------------------------------------------------------------------------------- /docs/.vitepress/theme/composables/useCardAnimation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/composables/useCardAnimation.ts -------------------------------------------------------------------------------- /docs/.vitepress/theme/composables/useSlideIn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/composables/useSlideIn.ts -------------------------------------------------------------------------------- /docs/.vitepress/theme/fonts/Estedad[KSHD,wght].woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/fonts/Estedad[KSHD,wght].woff2 -------------------------------------------------------------------------------- /docs/.vitepress/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/index.ts -------------------------------------------------------------------------------- /docs/.vitepress/theme/styles/landing.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/styles/landing.css -------------------------------------------------------------------------------- /docs/.vitepress/theme/styles/overrides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/styles/overrides.css -------------------------------------------------------------------------------- /docs/.vitepress/theme/styles/vars.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/theme/styles/vars.css -------------------------------------------------------------------------------- /docs/.vitepress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/.vitepress/tsconfig.json -------------------------------------------------------------------------------- /docs/.vitepress/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /docs/_data/blog.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/_data/blog.data.ts -------------------------------------------------------------------------------- /docs/_data/team.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/_data/team.js -------------------------------------------------------------------------------- /docs/blog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/blog.md -------------------------------------------------------------------------------- /docs/blog/announcing-vite2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/blog/announcing-vite2.md -------------------------------------------------------------------------------- /docs/blog/announcing-vite3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/blog/announcing-vite3.md -------------------------------------------------------------------------------- /docs/blog/announcing-vite4-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/blog/announcing-vite4-3.md -------------------------------------------------------------------------------- /docs/blog/announcing-vite4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/blog/announcing-vite4.md -------------------------------------------------------------------------------- /docs/blog/announcing-vite5-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/blog/announcing-vite5-1.md -------------------------------------------------------------------------------- /docs/blog/announcing-vite5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/blog/announcing-vite5.md -------------------------------------------------------------------------------- /docs/blog/announcing-vite6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/blog/announcing-vite6.md -------------------------------------------------------------------------------- /docs/blog/announcing-vite7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/blog/announcing-vite7.md -------------------------------------------------------------------------------- /docs/changes/hotupdate-hook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/changes/hotupdate-hook.md -------------------------------------------------------------------------------- /docs/changes/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/changes/index.md -------------------------------------------------------------------------------- /docs/changes/per-environment-apis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/changes/per-environment-apis.md -------------------------------------------------------------------------------- /docs/changes/shared-plugins-during-build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/changes/shared-plugins-during-build.md -------------------------------------------------------------------------------- /docs/changes/ssr-using-modulerunner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/changes/ssr-using-modulerunner.md -------------------------------------------------------------------------------- /docs/changes/this-environment-in-hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/changes/this-environment-in-hooks.md -------------------------------------------------------------------------------- /docs/config/build-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/config/build-options.md -------------------------------------------------------------------------------- /docs/config/dep-optimization-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/config/dep-optimization-options.md -------------------------------------------------------------------------------- /docs/config/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/config/index.md -------------------------------------------------------------------------------- /docs/config/preview-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/config/preview-options.md -------------------------------------------------------------------------------- /docs/config/server-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/config/server-options.md -------------------------------------------------------------------------------- /docs/config/shared-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/config/shared-options.md -------------------------------------------------------------------------------- /docs/config/ssr-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/config/ssr-options.md -------------------------------------------------------------------------------- /docs/config/worker-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/config/worker-options.md -------------------------------------------------------------------------------- /docs/guide/api-environment-frameworks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/guide/api-environment-frameworks.md -------------------------------------------------------------------------------- /docs/guide/api-environment-instances.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/guide/api-environment-instances.md -------------------------------------------------------------------------------- /docs/guide/api-environment-plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/guide/api-environment-plugins.md -------------------------------------------------------------------------------- /docs/guide/api-environment-runtimes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/guide/api-environment-runtimes.md -------------------------------------------------------------------------------- /docs/guide/api-environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/guide/api-environment.md -------------------------------------------------------------------------------- /docs/guide/api-hmr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/guide/api-hmr.md -------------------------------------------------------------------------------- /docs/guide/api-javascript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/guide/api-javascript.md -------------------------------------------------------------------------------- /docs/guide/api-plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/guide/api-plugin.md -------------------------------------------------------------------------------- /docs/guide/assets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/guide/assets.md -------------------------------------------------------------------------------- /docs/guide/backend-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/guide/backend-integration.md -------------------------------------------------------------------------------- /docs/guide/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/guide/build.md -------------------------------------------------------------------------------- /docs/guide/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/guide/cli.md -------------------------------------------------------------------------------- /docs/guide/comparisons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/guide/comparisons.md -------------------------------------------------------------------------------- /docs/guide/dep-pre-bundling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/guide/dep-pre-bundling.md -------------------------------------------------------------------------------- /docs/guide/env-and-mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/guide/env-and-mode.md -------------------------------------------------------------------------------- /docs/guide/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/guide/features.md -------------------------------------------------------------------------------- /docs/guide/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/guide/index.md -------------------------------------------------------------------------------- /docs/guide/migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/guide/migration.md -------------------------------------------------------------------------------- /docs/guide/performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/guide/performance.md -------------------------------------------------------------------------------- /docs/guide/philosophy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/guide/philosophy.md -------------------------------------------------------------------------------- /docs/guide/rolldown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/guide/rolldown.md -------------------------------------------------------------------------------- /docs/guide/ssr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/guide/ssr.md -------------------------------------------------------------------------------- /docs/guide/static-deploy-github-pages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/guide/static-deploy-github-pages.yaml -------------------------------------------------------------------------------- /docs/guide/static-deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/guide/static-deploy.md -------------------------------------------------------------------------------- /docs/guide/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/guide/troubleshooting.md -------------------------------------------------------------------------------- /docs/guide/using-plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/guide/using-plugins.md -------------------------------------------------------------------------------- /docs/guide/why.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/guide/why.md -------------------------------------------------------------------------------- /docs/images/bundler.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/images/bundler.svg -------------------------------------------------------------------------------- /docs/images/community/placeholder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/images/community/placeholder.jpg -------------------------------------------------------------------------------- /docs/images/diagrams.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/images/diagrams.fig -------------------------------------------------------------------------------- /docs/images/esm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/images/esm.svg -------------------------------------------------------------------------------- /docs/images/graph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/images/graph.svg -------------------------------------------------------------------------------- /docs/images/lit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/images/lit.svg -------------------------------------------------------------------------------- /docs/images/preact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/images/preact.svg -------------------------------------------------------------------------------- /docs/images/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/images/react.svg -------------------------------------------------------------------------------- /docs/images/svelte.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/images/svelte.svg -------------------------------------------------------------------------------- /docs/images/v3-docs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/images/v3-docs.png -------------------------------------------------------------------------------- /docs/images/v3-new-open-issues-and-PRs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/images/v3-new-open-issues-and-PRs.png -------------------------------------------------------------------------------- /docs/images/v3-open-issues-and-PRs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/images/v3-open-issues-and-PRs.png -------------------------------------------------------------------------------- /docs/images/vercel-configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/images/vercel-configuration.png -------------------------------------------------------------------------------- /docs/images/vite-3-cold-start.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/images/vite-3-cold-start.svg -------------------------------------------------------------------------------- /docs/images/vite-environments.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/images/vite-environments.svg -------------------------------------------------------------------------------- /docs/images/vite-plugin-inspect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/images/vite-plugin-inspect.png -------------------------------------------------------------------------------- /docs/images/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/images/vite.svg -------------------------------------------------------------------------------- /docs/images/vue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/images/vue.svg -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/plugins/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/plugins/index.md -------------------------------------------------------------------------------- /docs/public/_headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/public/_headers -------------------------------------------------------------------------------- /docs/public/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/public/_redirects -------------------------------------------------------------------------------- /docs/public/astro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/public/astro.svg -------------------------------------------------------------------------------- /docs/public/bolt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/public/bolt.svg -------------------------------------------------------------------------------- /docs/public/ecosystem-vite4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/public/ecosystem-vite4.png -------------------------------------------------------------------------------- /docs/public/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/public/github.svg -------------------------------------------------------------------------------- /docs/public/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/public/heart.svg -------------------------------------------------------------------------------- /docs/public/logo-home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/public/logo-home.svg -------------------------------------------------------------------------------- /docs/public/logo-uwu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/public/logo-uwu.png -------------------------------------------------------------------------------- /docs/public/logo-with-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/public/logo-with-shadow.png -------------------------------------------------------------------------------- /docs/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/public/logo.svg -------------------------------------------------------------------------------- /docs/public/noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/public/noise.png -------------------------------------------------------------------------------- /docs/public/nuxtlabs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/public/nuxtlabs.svg -------------------------------------------------------------------------------- /docs/public/og-image-announcing-vite3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/public/og-image-announcing-vite3.png -------------------------------------------------------------------------------- /docs/public/og-image-announcing-vite4-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/public/og-image-announcing-vite4-3.png -------------------------------------------------------------------------------- /docs/public/og-image-announcing-vite4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/public/og-image-announcing-vite4.png -------------------------------------------------------------------------------- /docs/public/og-image-announcing-vite5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/public/og-image-announcing-vite5-1.png -------------------------------------------------------------------------------- /docs/public/og-image-announcing-vite5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/public/og-image-announcing-vite5.png -------------------------------------------------------------------------------- /docs/public/og-image-announcing-vite6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/public/og-image-announcing-vite6.png -------------------------------------------------------------------------------- /docs/public/og-image-announcing-vite7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/public/og-image-announcing-vite7.png -------------------------------------------------------------------------------- /docs/public/og-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/public/og-image.jpg -------------------------------------------------------------------------------- /docs/public/stackblitz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/public/stackblitz.svg -------------------------------------------------------------------------------- /docs/public/vite.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/public/vite.mp3 -------------------------------------------------------------------------------- /docs/public/vite4-3-hmr-time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/public/vite4-3-hmr-time.png -------------------------------------------------------------------------------- /docs/public/vite4-3-startup-time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/public/vite4-3-startup-time.png -------------------------------------------------------------------------------- /docs/public/vite5-1-10K-modules-loading-time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/public/vite5-1-10K-modules-loading-time.png -------------------------------------------------------------------------------- /docs/public/vite6-npm-weekly-downloads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/public/vite6-npm-weekly-downloads.png -------------------------------------------------------------------------------- /docs/public/viteconf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/public/viteconf.svg -------------------------------------------------------------------------------- /docs/public/voice.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/public/voice.svg -------------------------------------------------------------------------------- /docs/public/voidzero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/public/voidzero.svg -------------------------------------------------------------------------------- /docs/releases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/releases.md -------------------------------------------------------------------------------- /docs/team.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/docs/team.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-fa/HEAD/renovate.json --------------------------------------------------------------------------------