react-redux-cesium-testing-demo icon indicating copy to clipboard operation
react-redux-cesium-testing-demo copied to clipboard

Production build

Open js2me opened this issue 8 years ago • 1 comments

Hello, dear @markerikson

Now I decided to collect project to production version And I see this errors in console: image

server config :

app.use("/", express.static(PATHS.dist));
app.listen(ENVIRONMENT.port, ENVIRONMENT.host, function (err) {
    console.log('Listening at http://${'+ENVIRONMENT.host+'}:${'+ENVIRONMENT.port+'}');
    if(err)
    {
        console.log(err);
        return;
    }

});

And my path dist image Likely, I'm doing something wrong :-)))

js2me avatar Feb 21 '17 15:02 js2me

The webpackJsonp error generally means that Webpack has output multiple chunks, but the one containing the Webpack bootstrapping code wasn't the first chunk loaded into the page.

I may glance at this briefly later this week, but honestly not a high priority for me atm.

markerikson avatar Feb 21 '17 16:02 markerikson