mirror of
https://github.com/stackblitz/bolt.new
synced 2024-11-27 22:42:21 +00:00
32 lines
746 B
TypeScript
32 lines
746 B
TypeScript
|
import { WebContainer } from '@webcontainer/api';
|
||
|
|
||
|
interface WebContainerContext {
|
||
|
loaded: boolean;
|
||
|
}
|
||
|
|
||
|
export const webcontainerContext: WebContainerContext = import.meta.hot?.data.webcontainerContext ?? {
|
||
|
loaded: false,
|
||
|
};
|
||
|
|
||
|
if (import.meta.hot) {
|
||
|
import.meta.hot.data.webcontainerContext = webcontainerContext;
|
||
|
}
|
||
|
|
||
|
export let webcontainer: Promise<WebContainer> = new Promise(() => {
|
||
|
// noop for ssr
|
||
|
});
|
||
|
|
||
|
if (!import.meta.env.SSR) {
|
||
|
webcontainer =
|
||
|
import.meta.hot?.data.webcontainer ??
|
||
|
Promise.resolve()
|
||
|
.then(() => WebContainer.boot({ workdirName: 'project' }))
|
||
|
.then(() => {
|
||
|
webcontainerContext.loaded = true;
|
||
|
});
|
||
|
|
||
|
if (import.meta.hot) {
|
||
|
import.meta.hot.data.webcontainer = webcontainer;
|
||
|
}
|
||
|
}
|