-
-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #274 from Tresjs/bugfix/clean-up-local-and-fix-docs
fix: clean up local and fix docs
- Loading branch information
Showing
13 changed files
with
296 additions
and
4,221 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
/* eslint-disable */ | ||
/* prettier-ignore */ | ||
// @ts-nocheck | ||
// Generated by unplugin-vue-components | ||
// Read more: https://github.com/vuejs/core/pull/3399 | ||
import '@vue/runtime-core' | ||
|
||
export {} | ||
|
||
declare module '@vue/runtime-core' { | ||
export interface GlobalComponents { | ||
DonutExample: typeof import('./.vitepress/theme/components/DonutExample.vue')['default'] | ||
EmbedExperiment: typeof import('./.vitepress/theme/components/EmbedExperiment.vue')['default'] | ||
ExtendExample: typeof import('./.vitepress/theme/components/ExtendExample.vue')['default'] | ||
FirstScene: typeof import('./.vitepress/theme/components/FirstScene.vue')['default'] | ||
FirstSceneLightToon: typeof import('./.vitepress/theme/components/FirstSceneLightToon.vue')['default'] | ||
LoveVueThreeJS: typeof import('./.vitepress/theme/components/LoveVueThreeJS.vue')['default'] | ||
RouterLink: typeof import('vue-router')['RouterLink'] | ||
RouterView: typeof import('vue-router')['RouterView'] | ||
StackBlitzEmbed: typeof import('./.vitepress/theme/components/StackBlitzEmbed.vue')['default'] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,19 @@ | ||
import { defineConfig } from 'vite' | ||
import Unocss from 'unocss/vite' | ||
import svgLoader from 'vite-svg-loader' | ||
import Components from 'unplugin-vue-components/vite' | ||
|
||
export default defineConfig({ | ||
plugins: [svgLoader(), Unocss()], | ||
plugins: [ | ||
svgLoader(), | ||
Unocss(), | ||
Components({ | ||
// allow auto load markdown components under `.vitepress/theme/components` | ||
dirs: ['.vitepress/theme/components'], | ||
extensions: ['vue', 'md'], | ||
// allow auto import and register components used in markdown | ||
include: [/\.vue$/, /\.vue\?vue/, /\.md$/], | ||
dts: 'components.d.ts', | ||
}), | ||
], | ||
}) |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.