storybook/docs/snippets/common/storybook-builder-api-dev-server.ts.mdx
2022-05-29 18:56:46 +08:00

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,
},
},
});
}
```