mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
23 lines
424 B
Plaintext
23 lines
424 B
Plaintext
```ts
|
|
// server.ts
|
|
|
|
import { createServer } from 'vite';
|
|
|
|
export async function createViteServer(options: ExtendedOptions, devServer: Server) {
|
|
const { port } = options;
|
|
// Remainder server configuration
|
|
|
|
// Creates the server.
|
|
return createServer({
|
|
// The server configuration goes here
|
|
server: {
|
|
middlewareMode: true,
|
|
hmr: {
|
|
port,
|
|
server: devServer,
|
|
},
|
|
},
|
|
});
|
|
}
|
|
```
|