mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 05:51:21 +08:00
22 lines
452 B
Plaintext
22 lines
452 B
Plaintext
```ts
|
|
// index.ts
|
|
|
|
import { createViteServer } from './vite-server';
|
|
|
|
|
|
let server: ViteDevServer;
|
|
export async function bail(): Promise<void> {
|
|
return server?.close();
|
|
}
|
|
|
|
export const start: ViteBuilder['start'] = async ({ options, server: devServer }) => {
|
|
// Remainder implementation goes here
|
|
server = await createViteServer(options as ExtendedOptions, devServer);
|
|
|
|
return {
|
|
bail,
|
|
totalTime: process.hrtime(startTime),
|
|
};
|
|
};
|
|
```
|