我遇到了错误:
“另一台服务器已经在端口7777上运行。请停止它或更改默认端口以继续。”
我尝试使用styleguide.config.js中的serverPort选项提供另一个端口
它根本不起作用,并且在新端口上给出相同的错误。
以下是我的styleguide.config.js条目:
const path = require('path');
const glob = require('glob');
module.exports = {
serverPort: 7777,
title: 'React Style Guide Example',
components: 'components/**/*/*.ts*',
resolver: require('react-docgen').resolver.findAllComponentDefinitions,
propsParser: require('react-docgen-typescript').withCustomConfig('./tsconfig.json').parse
};
此外,在我的webpack.config.js中,我具有以下内容:
host: process.env.HOST,
port: process.env.PORT,
任何帮助对我来说都是非常有价值的。
谢谢!