├── .github ├── pull_request_template.md └── workflows │ ├── lint.yml │ └── ryu-cho.yml ├── .gitignore ├── .textlintrc ├── .vitepress ├── buildEnd.config.ts ├── config.ts ├── inlined-scripts │ ├── banner.d.ts │ └── banner.js └── theme │ ├── components │ ├── AsideSponsors.vue │ ├── BlogIndex.vue │ ├── NonInheritBadge.vue │ ├── SponsorBanner.vue │ ├── SupportedVersions.vue │ ├── SvgImage.vue │ ├── YouTubeVideo.vue │ └── landing │ │ ├── 1. hero-section │ │ ├── HeroDiagram.vue │ │ ├── HeroSection.vue │ │ ├── github.svg │ │ └── 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 │ │ └── heart.svg │ │ ├── 6. get-started-section │ │ └── GetStartedSection.vue │ │ └── common │ │ ├── SvgNode.vue │ │ └── noise.webp │ ├── composables │ ├── images │ │ ├── astro.svg │ │ ├── bolt.svg │ │ ├── nuxtlabs.svg │ │ ├── stackblitz.svg │ │ └── voidzero.svg │ ├── sponsor.ts │ ├── useCardAnimation.ts │ └── useSlideIn.ts │ ├── index.ts │ └── styles │ ├── landing.css │ └── vars.css ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── _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 └── announcing-vite8-beta.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 ├── dep-pre-bundling.md ├── env-and-mode.md ├── features.md ├── index.md ├── migration.md ├── performance.md ├── philosophy.md ├── ssr.md ├── static-deploy-github-pages.yaml ├── static-deploy.md ├── troubleshooting.md ├── using-plugins.md └── why.md ├── images ├── bundler.svg ├── community │ └── placeholder.webp ├── ecosystem-vite4.webp ├── esm.svg ├── graph.svg ├── lit.svg ├── preact.svg ├── react.svg ├── svelte.svg ├── v3-docs.webp ├── v3-new-open-issues-and-PRs.webp ├── v3-open-issues-and-PRs.webp ├── vite-3-cold-start.svg ├── vite-environments.svg ├── vite-plugin-inspect.webp ├── vite.svg ├── vite4-3-hmr-time.webp ├── vite4-3-startup-time.webp ├── vite5-1-10K-modules-loading-time.webp ├── vite6-npm-weekly-downloads.webp ├── viteconf.svg ├── voice.svg └── vue.svg ├── index.md ├── netlify.toml ├── package.json ├── plugins └── index.md ├── pnpm-lock.yaml ├── public ├── _headers ├── _redirects ├── logo-uwu.webp ├── logo-with-shadow.webp ├── logo.svg ├── og-image-announcing-vite3.webp ├── og-image-announcing-vite4-3.webp ├── og-image-announcing-vite4.webp ├── og-image-announcing-vite5-1.webp ├── og-image-announcing-vite5.webp ├── og-image-announcing-vite6.webp ├── og-image-announcing-vite7.webp ├── og-image-announcing-vite8-beta.webp ├── og-image.jpg └── vite.mp3 ├── releases.md ├── team.md └── tsconfig.json /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | resolve #2000 2 | -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/ryu-cho.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.github/workflows/ryu-cho.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.gitignore -------------------------------------------------------------------------------- /.textlintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.textlintrc -------------------------------------------------------------------------------- /.vitepress/buildEnd.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/buildEnd.config.ts -------------------------------------------------------------------------------- /.vitepress/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/config.ts -------------------------------------------------------------------------------- /.vitepress/inlined-scripts/banner.d.ts: -------------------------------------------------------------------------------- 1 | interface Window { 2 | __VITE_BANNER_ID__: string 3 | } -------------------------------------------------------------------------------- /.vitepress/inlined-scripts/banner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/inlined-scripts/banner.js -------------------------------------------------------------------------------- /.vitepress/theme/components/AsideSponsors.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/AsideSponsors.vue -------------------------------------------------------------------------------- /.vitepress/theme/components/BlogIndex.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/BlogIndex.vue -------------------------------------------------------------------------------- /.vitepress/theme/components/NonInheritBadge.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/NonInheritBadge.vue -------------------------------------------------------------------------------- /.vitepress/theme/components/SponsorBanner.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/SponsorBanner.vue -------------------------------------------------------------------------------- /.vitepress/theme/components/SupportedVersions.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/SupportedVersions.vue -------------------------------------------------------------------------------- /.vitepress/theme/components/SvgImage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/SvgImage.vue -------------------------------------------------------------------------------- /.vitepress/theme/components/YouTubeVideo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/YouTubeVideo.vue -------------------------------------------------------------------------------- /.vitepress/theme/components/landing/1. hero-section/HeroDiagram.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/landing/1. hero-section/HeroDiagram.vue -------------------------------------------------------------------------------- /.vitepress/theme/components/landing/1. hero-section/HeroSection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/landing/1. hero-section/HeroSection.vue -------------------------------------------------------------------------------- /.vitepress/theme/components/landing/1. hero-section/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/landing/1. hero-section/github.svg -------------------------------------------------------------------------------- /.vitepress/theme/components/landing/1. hero-section/svg-elements/SvgBlueIndicator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/landing/1. hero-section/svg-elements/SvgBlueIndicator.vue -------------------------------------------------------------------------------- /.vitepress/theme/components/landing/1. hero-section/svg-elements/SvgInputs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/landing/1. hero-section/svg-elements/SvgInputs.vue -------------------------------------------------------------------------------- /.vitepress/theme/components/landing/1. hero-section/svg-elements/SvgOutputs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/landing/1. hero-section/svg-elements/SvgOutputs.vue -------------------------------------------------------------------------------- /.vitepress/theme/components/landing/1. hero-section/svg-elements/SvgPinkIndicator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/landing/1. hero-section/svg-elements/SvgPinkIndicator.vue -------------------------------------------------------------------------------- /.vitepress/theme/components/landing/2. feature-section/FeatureCI.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/landing/2. feature-section/FeatureCI.vue -------------------------------------------------------------------------------- /.vitepress/theme/components/landing/2. feature-section/FeatureFlexiblePlugins.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/landing/2. feature-section/FeatureFlexiblePlugins.vue -------------------------------------------------------------------------------- /.vitepress/theme/components/landing/2. feature-section/FeatureHMR.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/landing/2. feature-section/FeatureHMR.vue -------------------------------------------------------------------------------- /.vitepress/theme/components/landing/2. feature-section/FeatureInstantServerStart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/landing/2. feature-section/FeatureInstantServerStart.vue -------------------------------------------------------------------------------- /.vitepress/theme/components/landing/2. feature-section/FeatureOptimizedBuild.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/landing/2. feature-section/FeatureOptimizedBuild.vue -------------------------------------------------------------------------------- /.vitepress/theme/components/landing/2. feature-section/FeatureRichFeatures.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/landing/2. feature-section/FeatureRichFeatures.vue -------------------------------------------------------------------------------- /.vitepress/theme/components/landing/2. feature-section/FeatureSSRSupport.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/landing/2. feature-section/FeatureSSRSupport.vue -------------------------------------------------------------------------------- /.vitepress/theme/components/landing/2. feature-section/FeatureSection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/landing/2. feature-section/FeatureSection.vue -------------------------------------------------------------------------------- /.vitepress/theme/components/landing/2. feature-section/FeatureTypedAPI.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/landing/2. feature-section/FeatureTypedAPI.vue -------------------------------------------------------------------------------- /.vitepress/theme/components/landing/2. feature-section/images/css3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/landing/2. feature-section/images/css3.svg -------------------------------------------------------------------------------- /.vitepress/theme/components/landing/2. feature-section/images/js.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/landing/2. feature-section/images/js.svg -------------------------------------------------------------------------------- /.vitepress/theme/components/landing/2. feature-section/images/json.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/landing/2. feature-section/images/json.svg -------------------------------------------------------------------------------- /.vitepress/theme/components/landing/2. feature-section/images/postcss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/landing/2. feature-section/images/postcss.svg -------------------------------------------------------------------------------- /.vitepress/theme/components/landing/2. feature-section/images/ts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/landing/2. feature-section/images/ts.svg -------------------------------------------------------------------------------- /.vitepress/theme/components/landing/2. feature-section/images/wa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/landing/2. feature-section/images/wa.svg -------------------------------------------------------------------------------- /.vitepress/theme/components/landing/3. frameworks-section/FrameworkCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/landing/3. frameworks-section/FrameworkCard.vue -------------------------------------------------------------------------------- /.vitepress/theme/components/landing/3. frameworks-section/FrameworksSection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/landing/3. frameworks-section/FrameworksSection.vue -------------------------------------------------------------------------------- /.vitepress/theme/components/landing/3. frameworks-section/images/adonis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/landing/3. frameworks-section/images/adonis.svg -------------------------------------------------------------------------------- /.vitepress/theme/components/landing/3. frameworks-section/images/analog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/landing/3. frameworks-section/images/analog.svg -------------------------------------------------------------------------------- /.vitepress/theme/components/landing/3. frameworks-section/images/angular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/landing/3. frameworks-section/images/angular.svg -------------------------------------------------------------------------------- /.vitepress/theme/components/landing/3. frameworks-section/images/astro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/landing/3. frameworks-section/images/astro.svg -------------------------------------------------------------------------------- /.vitepress/theme/components/landing/3. frameworks-section/images/ember.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/landing/3. frameworks-section/images/ember.svg -------------------------------------------------------------------------------- /.vitepress/theme/components/landing/3. frameworks-section/images/hono.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/landing/3. frameworks-section/images/hono.svg -------------------------------------------------------------------------------- /.vitepress/theme/components/landing/3. frameworks-section/images/laravel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/landing/3. frameworks-section/images/laravel.svg -------------------------------------------------------------------------------- /.vitepress/theme/components/landing/3. frameworks-section/images/marko.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/landing/3. frameworks-section/images/marko.svg -------------------------------------------------------------------------------- /.vitepress/theme/components/landing/3. frameworks-section/images/nuxt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/landing/3. frameworks-section/images/nuxt.svg -------------------------------------------------------------------------------- /.vitepress/theme/components/landing/3. frameworks-section/images/playwright.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/landing/3. frameworks-section/images/playwright.svg -------------------------------------------------------------------------------- /.vitepress/theme/components/landing/3. frameworks-section/images/preact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/landing/3. frameworks-section/images/preact.svg -------------------------------------------------------------------------------- /.vitepress/theme/components/landing/3. frameworks-section/images/qwik.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/landing/3. frameworks-section/images/qwik.svg -------------------------------------------------------------------------------- /.vitepress/theme/components/landing/3. frameworks-section/images/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/landing/3. frameworks-section/images/react.svg -------------------------------------------------------------------------------- /.vitepress/theme/components/landing/3. frameworks-section/images/redwood.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/landing/3. frameworks-section/images/redwood.svg -------------------------------------------------------------------------------- /.vitepress/theme/components/landing/3. frameworks-section/images/remix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/landing/3. frameworks-section/images/remix.svg -------------------------------------------------------------------------------- /.vitepress/theme/components/landing/3. frameworks-section/images/solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/landing/3. frameworks-section/images/solid.svg -------------------------------------------------------------------------------- /.vitepress/theme/components/landing/3. frameworks-section/images/storybook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/landing/3. frameworks-section/images/storybook.svg -------------------------------------------------------------------------------- /.vitepress/theme/components/landing/3. frameworks-section/images/svelte.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/landing/3. frameworks-section/images/svelte.svg -------------------------------------------------------------------------------- /.vitepress/theme/components/landing/3. frameworks-section/images/vitest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/landing/3. frameworks-section/images/vitest.svg -------------------------------------------------------------------------------- /.vitepress/theme/components/landing/3. frameworks-section/images/vue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/landing/3. frameworks-section/images/vue.svg -------------------------------------------------------------------------------- /.vitepress/theme/components/landing/4. community-section/CommunityCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/landing/4. community-section/CommunityCard.vue -------------------------------------------------------------------------------- /.vitepress/theme/components/landing/4. community-section/CommunitySection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/landing/4. community-section/CommunitySection.vue -------------------------------------------------------------------------------- /.vitepress/theme/components/landing/5. sponsor-section/SponsorSection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/landing/5. sponsor-section/SponsorSection.vue -------------------------------------------------------------------------------- /.vitepress/theme/components/landing/5. sponsor-section/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/landing/5. sponsor-section/heart.svg -------------------------------------------------------------------------------- /.vitepress/theme/components/landing/6. get-started-section/GetStartedSection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/landing/6. get-started-section/GetStartedSection.vue -------------------------------------------------------------------------------- /.vitepress/theme/components/landing/common/SvgNode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/landing/common/SvgNode.vue -------------------------------------------------------------------------------- /.vitepress/theme/components/landing/common/noise.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/components/landing/common/noise.webp -------------------------------------------------------------------------------- /.vitepress/theme/composables/images/astro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/composables/images/astro.svg -------------------------------------------------------------------------------- /.vitepress/theme/composables/images/bolt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/composables/images/bolt.svg -------------------------------------------------------------------------------- /.vitepress/theme/composables/images/nuxtlabs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/composables/images/nuxtlabs.svg -------------------------------------------------------------------------------- /.vitepress/theme/composables/images/stackblitz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/composables/images/stackblitz.svg -------------------------------------------------------------------------------- /.vitepress/theme/composables/images/voidzero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/composables/images/voidzero.svg -------------------------------------------------------------------------------- /.vitepress/theme/composables/sponsor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/composables/sponsor.ts -------------------------------------------------------------------------------- /.vitepress/theme/composables/useCardAnimation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/composables/useCardAnimation.ts -------------------------------------------------------------------------------- /.vitepress/theme/composables/useSlideIn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/composables/useSlideIn.ts -------------------------------------------------------------------------------- /.vitepress/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/index.ts -------------------------------------------------------------------------------- /.vitepress/theme/styles/landing.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/styles/landing.css -------------------------------------------------------------------------------- /.vitepress/theme/styles/vars.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/.vitepress/theme/styles/vars.css -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/README.md -------------------------------------------------------------------------------- /_data/blog.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/_data/blog.data.ts -------------------------------------------------------------------------------- /_data/team.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/_data/team.js -------------------------------------------------------------------------------- /blog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/blog.md -------------------------------------------------------------------------------- /blog/announcing-vite2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/blog/announcing-vite2.md -------------------------------------------------------------------------------- /blog/announcing-vite3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/blog/announcing-vite3.md -------------------------------------------------------------------------------- /blog/announcing-vite4-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/blog/announcing-vite4-3.md -------------------------------------------------------------------------------- /blog/announcing-vite4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/blog/announcing-vite4.md -------------------------------------------------------------------------------- /blog/announcing-vite5-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/blog/announcing-vite5-1.md -------------------------------------------------------------------------------- /blog/announcing-vite5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/blog/announcing-vite5.md -------------------------------------------------------------------------------- /blog/announcing-vite6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/blog/announcing-vite6.md -------------------------------------------------------------------------------- /blog/announcing-vite7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/blog/announcing-vite7.md -------------------------------------------------------------------------------- /blog/announcing-vite8-beta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/blog/announcing-vite8-beta.md -------------------------------------------------------------------------------- /changes/hotupdate-hook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/changes/hotupdate-hook.md -------------------------------------------------------------------------------- /changes/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/changes/index.md -------------------------------------------------------------------------------- /changes/per-environment-apis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/changes/per-environment-apis.md -------------------------------------------------------------------------------- /changes/shared-plugins-during-build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/changes/shared-plugins-during-build.md -------------------------------------------------------------------------------- /changes/ssr-using-modulerunner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/changes/ssr-using-modulerunner.md -------------------------------------------------------------------------------- /changes/this-environment-in-hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/changes/this-environment-in-hooks.md -------------------------------------------------------------------------------- /config/build-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/config/build-options.md -------------------------------------------------------------------------------- /config/dep-optimization-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/config/dep-optimization-options.md -------------------------------------------------------------------------------- /config/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/config/index.md -------------------------------------------------------------------------------- /config/preview-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/config/preview-options.md -------------------------------------------------------------------------------- /config/server-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/config/server-options.md -------------------------------------------------------------------------------- /config/shared-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/config/shared-options.md -------------------------------------------------------------------------------- /config/ssr-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/config/ssr-options.md -------------------------------------------------------------------------------- /config/worker-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/config/worker-options.md -------------------------------------------------------------------------------- /guide/api-environment-frameworks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/guide/api-environment-frameworks.md -------------------------------------------------------------------------------- /guide/api-environment-instances.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/guide/api-environment-instances.md -------------------------------------------------------------------------------- /guide/api-environment-plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/guide/api-environment-plugins.md -------------------------------------------------------------------------------- /guide/api-environment-runtimes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/guide/api-environment-runtimes.md -------------------------------------------------------------------------------- /guide/api-environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/guide/api-environment.md -------------------------------------------------------------------------------- /guide/api-hmr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/guide/api-hmr.md -------------------------------------------------------------------------------- /guide/api-javascript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/guide/api-javascript.md -------------------------------------------------------------------------------- /guide/api-plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/guide/api-plugin.md -------------------------------------------------------------------------------- /guide/assets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/guide/assets.md -------------------------------------------------------------------------------- /guide/backend-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/guide/backend-integration.md -------------------------------------------------------------------------------- /guide/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/guide/build.md -------------------------------------------------------------------------------- /guide/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/guide/cli.md -------------------------------------------------------------------------------- /guide/dep-pre-bundling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/guide/dep-pre-bundling.md -------------------------------------------------------------------------------- /guide/env-and-mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/guide/env-and-mode.md -------------------------------------------------------------------------------- /guide/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/guide/features.md -------------------------------------------------------------------------------- /guide/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/guide/index.md -------------------------------------------------------------------------------- /guide/migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/guide/migration.md -------------------------------------------------------------------------------- /guide/performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/guide/performance.md -------------------------------------------------------------------------------- /guide/philosophy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/guide/philosophy.md -------------------------------------------------------------------------------- /guide/ssr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/guide/ssr.md -------------------------------------------------------------------------------- /guide/static-deploy-github-pages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/guide/static-deploy-github-pages.yaml -------------------------------------------------------------------------------- /guide/static-deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/guide/static-deploy.md -------------------------------------------------------------------------------- /guide/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/guide/troubleshooting.md -------------------------------------------------------------------------------- /guide/using-plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/guide/using-plugins.md -------------------------------------------------------------------------------- /guide/why.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/guide/why.md -------------------------------------------------------------------------------- /images/bundler.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/images/bundler.svg -------------------------------------------------------------------------------- /images/community/placeholder.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/images/community/placeholder.webp -------------------------------------------------------------------------------- /images/ecosystem-vite4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/images/ecosystem-vite4.webp -------------------------------------------------------------------------------- /images/esm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/images/esm.svg -------------------------------------------------------------------------------- /images/graph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/images/graph.svg -------------------------------------------------------------------------------- /images/lit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/images/lit.svg -------------------------------------------------------------------------------- /images/preact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/images/preact.svg -------------------------------------------------------------------------------- /images/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/images/react.svg -------------------------------------------------------------------------------- /images/svelte.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/images/svelte.svg -------------------------------------------------------------------------------- /images/v3-docs.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/images/v3-docs.webp -------------------------------------------------------------------------------- /images/v3-new-open-issues-and-PRs.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/images/v3-new-open-issues-and-PRs.webp -------------------------------------------------------------------------------- /images/v3-open-issues-and-PRs.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/images/v3-open-issues-and-PRs.webp -------------------------------------------------------------------------------- /images/vite-3-cold-start.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/images/vite-3-cold-start.svg -------------------------------------------------------------------------------- /images/vite-environments.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/images/vite-environments.svg -------------------------------------------------------------------------------- /images/vite-plugin-inspect.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/images/vite-plugin-inspect.webp -------------------------------------------------------------------------------- /images/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/images/vite.svg -------------------------------------------------------------------------------- /images/vite4-3-hmr-time.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/images/vite4-3-hmr-time.webp -------------------------------------------------------------------------------- /images/vite4-3-startup-time.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/images/vite4-3-startup-time.webp -------------------------------------------------------------------------------- /images/vite5-1-10K-modules-loading-time.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/images/vite5-1-10K-modules-loading-time.webp -------------------------------------------------------------------------------- /images/vite6-npm-weekly-downloads.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/images/vite6-npm-weekly-downloads.webp -------------------------------------------------------------------------------- /images/viteconf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/images/viteconf.svg -------------------------------------------------------------------------------- /images/voice.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/images/voice.svg -------------------------------------------------------------------------------- /images/vue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/images/vue.svg -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/index.md -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- 1 | [build.environment] 2 | NODE_VERSION = "22" 3 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/package.json -------------------------------------------------------------------------------- /plugins/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/plugins/index.md -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/_headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/public/_headers -------------------------------------------------------------------------------- /public/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/public/_redirects -------------------------------------------------------------------------------- /public/logo-uwu.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/public/logo-uwu.webp -------------------------------------------------------------------------------- /public/logo-with-shadow.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/public/logo-with-shadow.webp -------------------------------------------------------------------------------- /public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/public/logo.svg -------------------------------------------------------------------------------- /public/og-image-announcing-vite3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/public/og-image-announcing-vite3.webp -------------------------------------------------------------------------------- /public/og-image-announcing-vite4-3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/public/og-image-announcing-vite4-3.webp -------------------------------------------------------------------------------- /public/og-image-announcing-vite4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/public/og-image-announcing-vite4.webp -------------------------------------------------------------------------------- /public/og-image-announcing-vite5-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/public/og-image-announcing-vite5-1.webp -------------------------------------------------------------------------------- /public/og-image-announcing-vite5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/public/og-image-announcing-vite5.webp -------------------------------------------------------------------------------- /public/og-image-announcing-vite6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/public/og-image-announcing-vite6.webp -------------------------------------------------------------------------------- /public/og-image-announcing-vite7.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/public/og-image-announcing-vite7.webp -------------------------------------------------------------------------------- /public/og-image-announcing-vite8-beta.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/public/og-image-announcing-vite8-beta.webp -------------------------------------------------------------------------------- /public/og-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/public/og-image.jpg -------------------------------------------------------------------------------- /public/vite.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/public/vite.mp3 -------------------------------------------------------------------------------- /releases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/releases.md -------------------------------------------------------------------------------- /team.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/team.md -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitejs/docs-ja/HEAD/tsconfig.json --------------------------------------------------------------------------------