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 4b22a36 commit 0d51a9dCopy full SHA for 0d51a9d
packages/kit/src/cli.js
@@ -63,7 +63,7 @@ prog
63
let close;
64
65
async function start() {
66
- const { plugins, svelte_config } = await import('./core/dev/plugin.js');
+ const { plugins, svelte_config } = await (await import('./core/dev/plugin.js')).create();
67
68
/** @type {import('vite').UserConfig} */
69
const config = { plugins };
@@ -109,6 +109,7 @@ prog
109
return server.close;
110
}
111
112
+ // TODO: we should probably replace this with something like vite-plugin-restart
113
async function relaunch() {
114
const id = uid;
115
relaunching = true;
0 commit comments