使用webpack-dev-server的代理套接字连接

时间:2018-07-06 06:39:57

标签: webpack webpack-dev-server http-proxy-middleware

我正在尝试使用webpack-dev-server代理套接字连接,但是出现以下错误:

Socket error

这是我的webpack.config.js文件

devServer: {
    contentBase: './dist',
    watchContentBase: true,
    publicPath: '/',
    host: 'localhost',
    port: 3000,
    public: '0.0.0.0:3000',
    hot: true,
    proxy: {
 '/api': {
        target: 'https://[address]:[port]',
        secure: false,
        pathRewrite: { '^/api': '' }
     }
 }

这是我在应用程序中的使用方式

this.sock = new SockJS('api/chatsocket');

我在做错什么吗?

0 个答案:

没有答案