problema CORS del servidor de desarrollo webpack

estoy usandowebpack-dev-server v1.10.1 para impulsar mi proyecto Redux y tengo las siguientes opciones:

contentBase: `http://${config.HOST}:${config.PORT}`,
quiet: false,
noInfo: true,
hot: true,
inline: true,
lazy: false,
publicPath: configWebpack.output.publicPath,
headers: {"Access-Control-Allow-Origin": "*"},
stats: {colors: true}

En el JS, estoy usandorequest desuperagent para generar una llamada HTTP GET

request
          .get(config.APIHost + apiUrl)
          .set('Accept', 'application/json')
          .withCredentials()
          .end(function (err, res) {
                if (!err && res.body) {
                    disptach(() => {
                        return {
                            type: actionType || GET_DATA,
                            payload: {
                                response: res.body
                            }
                        }
                    });
                }
          });

Pero recibí el error CORS:

XMLHttpRequest cannot load http://localhost:8000/api/getContentByType?category=all. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost:5050' is therefore not allowed access

¿Alguna sugerencia para resolver esto? Muchas gracias

Respuestas a la pregunta(3)

Su respuesta a la pregunta