彼らのウェブサイト/ドキュメントのどこにもこれに関する参照が見つかりません。これを別のポートに変更する必要があります。現在、3000 でスタックしています。
電子プロジェクトを作成する方法は次のとおりですelectron-forge
yarn create electron-app my-new-app --template=typescript
ポート 3000 に別のサービスがある場合は常に、次のエラーがスローされます。
listen EADDRINUSE :::3000
Error: listen EADDRINUSE :::3000
at Server.setupListenHandle [as _listen2] (net.js:1360:14)
私のwebpack.main.config.js
ファイル:
const path = require('path');
module.exports = {
entry: './src/index.ts',
// Put your normal webpack config below here
module: {
rules: require('./webpack.rules')
},
resolve: {
extensions: ['.js', '.ts', '.jsx', '.tsx', '.css', '.json']
},
devServer: {
contentBase: path.join(__dirname, 'dist'),
compress: true,
port: 9000
}
};