Creates a configured Fastify server instance for a Magek application.
The user's Magek application module
Optional server configuration
A configured Fastify instance ready to listen
import { createServer } from '@magek/server'import * as myApp from './dist'const server = await createServer(myApp)await server.listen({ port: 3000 }) Copy
import { createServer } from '@magek/server'import * as myApp from './dist'const server = await createServer(myApp)await server.listen({ port: 3000 })
Creates a configured Fastify server instance for a Magek application.