We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4839e95 commit 68e6a07Copy full SHA for 68e6a07
vite-plugin-mock-dev-server/src/compiler/rolldown.ts
@@ -30,13 +30,13 @@ const json5Plugin: Plugin = {
30
31
let _rolldown: null | {
32
build: typeof import('rolldown').build
33
- aliasPlugin: typeof import('rolldown/experimental').aliasPlugin
+ aliasPlugin: typeof import('rolldown/experimental').viteAliasPlugin
34
} = null
35
36
async function rolldown() {
37
_rolldown ||= {
38
build: (await import('rolldown')).build,
39
- aliasPlugin: (await import('rolldown/experimental')).aliasPlugin,
+ aliasPlugin: (await import('rolldown/experimental')).viteAliasPlugin,
40
}
41
return _rolldown
42
0 commit comments