Skip to content

Commit 98d80b0

Browse files
jgosmannantfu
andauthoredMar 31, 2025
feat: allow adding Vite plugins dependent on slides data (#2112)
Co-authored-by: Anthony Fu <github@antfu.me>
1 parent c7ba6b9 commit 98d80b0

File tree

4 files changed

+39
-0
lines changed

4 files changed

+39
-0
lines changed
 

‎docs/custom/config-vite.md

+16
Original file line numberDiff line numberDiff line change
@@ -65,3 +65,19 @@ export default defineConfig({
6565

6666
Please pass the Vue options to the `slidev.vue` field as described above
6767
:::
68+
69+
## Add Custom Plugins based on Slide data
70+
71+
Usually you can add Vite plugins into your `vite.config.ts` (see above).
72+
However, if you want to add plugins based on the slide data, you need to add a `./setup/vite-plugins.ts` with the following content:
73+
74+
```ts twoslash
75+
import { defineVitePluginSetup } from '@slidev/types'
76+
77+
export default defineVitePluginSetup((options) => {
78+
return [
79+
// Your plugins here
80+
// Slide data is available as options.data.slides
81+
]
82+
})
83+
```

‎packages/slidev/node/vite/index.ts

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ import { createRemoteAssetsPlugin } from './remoteAssets'
1616
import { createServerRefPlugin } from './serverRef'
1717
import { createStaticCopyPlugin } from './staticCopy'
1818
import { createUnocssPlugin } from './unocss'
19+
import { createUserVitePlugins } from './userPlugins'
1920
import { createVuePlugin } from './vue'
2021

2122
export function ViteSlidevPlugin(
@@ -41,5 +42,6 @@ export function ViteSlidevPlugin(
4142
createUnocssPlugin(options, pluginOptions),
4243
createStaticCopyPlugin(options, pluginOptions),
4344
createInspectPlugin(options, pluginOptions),
45+
createUserVitePlugins(options),
4446
])
4547
}
+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import type { ResolvedSlidevOptions, VitePluginsSetup } from '@slidev/types'
2+
import type { Plugin as VitePlugin } from 'vite'
3+
import { existsSync } from 'node:fs'
4+
import path from 'node:path'
5+
import { loadModule } from '../utils'
6+
7+
export async function createUserVitePlugins(options: ResolvedSlidevOptions): Promise<VitePlugin[]> {
8+
const createPluginTasks = options.roots.map(async (root) => {
9+
const modulePath = path.join(root, 'setup', 'vite-plugins.ts')
10+
if (existsSync(modulePath)) {
11+
const module = await loadModule(modulePath) as { default: VitePluginsSetup }
12+
return module.default(options)
13+
}
14+
return []
15+
})
16+
return (await Promise.all(createPluginTasks)).flatMap(p => p)
17+
}

‎packages/types/src/setups.ts

+4
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,12 @@ import type { MermaidConfig } from 'mermaid'
44
import type * as monaco from 'monaco-editor'
55
import type { BuiltinLanguage, BuiltinTheme, CodeOptionsMeta, CodeOptionsThemes, CodeToHastOptionsCommon, Highlighter, LanguageInput } from 'shiki'
66
import type { VitePluginConfig as UnoCssConfig } from 'unocss/vite'
7+
import type { Plugin as VitePlugin } from 'vite'
78
import type { App, ComputedRef, Ref } from 'vue'
89
import type { Router, RouteRecordRaw } from 'vue-router'
910
import type { CodeRunnerProviders } from './code-runner'
1011
import type { ContextMenuItem } from './context-menu'
12+
import type { ResolvedSlidevOptions } from './options'
1113
import type { MarkdownTransformer } from './transform'
1214
import type { SlidevPreparserExtension } from './types'
1315

@@ -79,6 +81,7 @@ export type PreparserSetup = (context: {
7981
headmatter: Record<string, unknown>
8082
mode?: string
8183
}) => Awaitable<SlidevPreparserExtension[]>
84+
export type VitePluginsSetup = (options: ResolvedSlidevOptions) => Awaitable<VitePlugin[]>
8285

8386
// client side
8487
export type MonacoSetup = (m: typeof monaco) => Awaitable<MonacoSetupReturn | void>
@@ -105,5 +108,6 @@ export const defineKatexSetup = defineSetup<KatexSetup>
105108
export const defineShortcutsSetup = defineSetup<ShortcutsSetup>
106109
export const defineTransformersSetup = defineSetup<TransformersSetup>
107110
export const definePreparserSetup = defineSetup<PreparserSetup>
111+
export const defineVitePluginsSetup = defineSetup<VitePluginsSetup>
108112
export const defineCodeRunnersSetup = defineSetup<CodeRunnersSetup>
109113
export const defineContextMenuSetup = defineSetup<ContextMenuSetup>

0 commit comments

Comments
 (0)
Please sign in to comment.