Webpack bundles are all same and look like a markup?

95 Views Asked by At

I make app.client.js and app.server.js bundles, plus I perfom code splitting and create vendor.chunk.js 1.chunk.js (this one should be my component bundle thas is uploaded on request).

When I take a look at them, they are all different, but when I look at them via DevTools, every bundle is like on the screen below:

enter image description here

That's the part of my renderer.js that I use to perform res.send(~html~):

export default (req, res, next) => {
let context = {};
let modules = [];
const html = ReactDomServer.renderToString(
    <Capture report={moduleName => modules.push(moduleName)}>
        <Router context={context} location={req.url}>
            <App/>
        </Router>
    </Capture>
);

let bundles = getBundles(stats, modules);

return res.send(`
        <!doctype html>
        <html lang="en">
          <head>...</head>
          <body>
            <div id="app">${html}</div>
            <script src="../../../dist/vendor.chunk.js"></script>
            ${bundles.map(bundle => {
    return `<script src="${bundle.publicPath}"></script>`
}).join('\\n')}
            <script src="../../../dist/app.client.js"></script>
          </body>
        </html>
`);
}

Can you explain me why it is broken? Thanks!

UPD: after setting my server/index.js file as follows ...

const app = Express();
const Router = Express.Router();

Router.use(Express.static(
    'dist',
    { maxAge: '30d' }));
Router.use('*', serverRenderer);

app.use(Router);
preloadAll().then(() => {
    app.listen(PORT, (error) => {
        if (error) return console.log('ERROR', error.message);
        console.log('Server listening on ', PORT);
    });
});

... I've got another problem: 1.chunk.js and 1.chunk.js.map are somehow duplicated and devtools warns me with the error "Unexpected token :". This is how it looks like now:

enter image description here

0

There are 0 best solutions below