这是开发预览网站。请访问正式文档 lynxjs.org

Home > @lynx-js/rspeedy > Server > port

Server.port property

Specify the port that the Rspeedy Server listens to.

Signature:

port?: number | undefined;

Default Value

Rsbuild defaults this option to 3000.

Remarks

By default, the server automatically increments the port number when the configured port is occupied.

Example

Set the port to a custom value:

import { defineConfig } from '@lynx-js/rspeedy'
export default defineConfig({
  server: {
    port: 3470,
  },
})