@md-plugins/vite-examples-plugin
v1.2.0
Published
A Vite plugin for @md-plugins for handling imported examples in markdown files.
Maintainers
Readme
@md-plugins/vite-examples-plugin
A Vite plugin for documentation examples. It loads Vue example components and their raw source so docs pages can render a live demo, show the source code, and export the same example to CodePen-style sandboxes.
Features
- Loads Vue example files dynamically during development.
- Generates stable example imports for production builds.
- Provides both compiled components and raw source strings.
- Supports Q-Press
MarkdownExampleusage and direct Vue/Vite documentation sites. - Includes manual chunk helpers for keeping example bundles organized.
Installation
Install the plugin via your preferred package manager:
# with pnpm
pnpm add @md-plugins/vite-examples-plugin
# with bun
bun add @md-plugins/vite-examples-plugin
# with yarn
yarn add @md-plugins/vite-examples-plugin
# with npm
npm install @md-plugins/vite-examples-pluginUsage
Basic Setup with Vite
To use the viteExamplesPlugin, configure it in your Vite project:
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import { viteExamplesPlugin, viteManualChunks } from '@md-plugins/vite-examples-plugin'
export default defineConfig(({ mode }) => {
const isProduction = mode === 'production'
return {
plugins: [
vue(),
viteExamplesPlugin({ isProd: isProduction, path: '/absolute/path/to/examples' }),
],
}
})Manual Chunk Splitting with Vite
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import { viteExamplesPlugin, viteManualChunks } from '@md-plugins/vite-examples-plugin'
export default defineConfig(({ mode }) => {
const isProduction = mode === 'production'
return {
plugins: [
vue(),
viteExamplesPlugin({ isProd: isProduction, path: '/absolute/path/to/examples' }),
],
build: {
chunkSizeWarningLimit: 650,
rolldownOptions: {
output: {
codeSplitting: {
groups: [
{
name: (moduleId) => viteManualChunks(moduleId) ?? null,
},
],
},
},
},
},
},
})Quasar Framework Configuration
- Update
quasar.config.(js|ts):
import { viteExamplesPlugin } from '@md-plugins/vite-examples-plugin'
export default defineConfig((ctx) => {
// ... build: {
vitePlugins: [
viteExamplesPlugin({ isProd: ctx.isProd, path: ctx.appPaths.srcDir + '/examples' }),
// ...
],
},
}Manual Chunk Splitting with Quasar
import { viteExamplesPlugin, viteManualChunks } from '@md-plugins/vite-examples-plugin' build: {
extendViteConf(viteConf, { isClient }) {
if (ctx.prod && isClient) {
viteConf.build = viteConf.build || {}
viteConf.build.chunkSizeWarningLimit = 650
viteConf.build.rolldownOptions = viteConf.build.rolldownOptions || {}
viteConf.build.rolldownOptions.output = viteConf.build.rolldownOptions.output || {}
viteConf.build.rolldownOptions.output.codeSplitting = {
groups: [
{
name: (moduleId) => viteManualChunks(moduleId) ?? null,
},
],
}
}
},
}How viteManualChunks Works
The viteManualChunks function analyzes the module ID and assigns it to a specific chunk:
Vendor Chunk: Files fromnode_modulesmatching libraries likevue,@vue,quasar, andvue-routerare assigned to thevendorchunk.Examples Chunk: Example files matching the patternexamples:<name>or located insrc/examples/<name>are grouped into chunks namede.<name>.
Example
Given the following files:
node_modules/vue/index.js
src/examples/example1/Example1.vue
src/examples/example2/Example2.vueThe resulting chunks might look like:
vendor.js // Contains Vue, Quasar, Vue Router, etc.
e.example1.js // Contains Example1.vue
e.example2.js // Contains Example2.vueThis helps facilitate loading and chunking in your application for your examples.
Example Folder Structure
src/
examples/
example1/
Example1.vue
example2/
Example2.vueHow It Works
The plugin provides two modes of operation based on the environment:
Development Mode
During development, the plugin uses Vite's import.meta.glob to dynamically load Vue example components and their raw source code:
export const code = import.meta.glob('/src/examples/example1/*.vue', {
eager: true,
})
export const source = import.meta.glob('/src/examples/example1/*.vue', {
query: '?raw',
import: 'default',
eager: true,
})Production Mode
In production, the plugin preloads example components and their raw source code, generating import and export statements:
import Example1 from '@/examples/example1/Example1.vue'
import RawExample1 from '@/examples/example1/Example1.vue?raw'
export { Example1, RawExample1 }Development Notes
The plugin is structured with the following components:
devLoadFunction Generates dynamic imports for example files during development.prodLoadFunction Creates preloaded import and export statements for example files in production.vitePluginFunction Constructs the Vite plugin with resolveId and load methods.viteExamplesPluginFunction Sets the target folder and initializes the plugin.
Error Handling
If the targetFolder is not defined when the plugin is initialized, an error will be thrown:
throw new Error('targetFolder is not defined')Documentation
In case this README falls out of date, please refer to the documentation for the latest information.
Support
If vite-examples-plugin is useful in your workflow and you want to support ongoing maintenance:
- GitHub Sponsors: https://github.com/sponsors/hawkeye64
- PayPal: https://paypal.me/hawkeye64
License
This project is licensed under the MIT License. See the LICENSE file for details.
