fix: finally no more useless warnings

This commit is contained in:
cha0s 2021-03-23 01:37:02 -05:00
parent 7f75ed66d6
commit b944300e38

View File

@ -11,7 +11,13 @@ module.exports = (latus) => (neutrino) => {
.hot(false)
.host(HTTP_DEV_HOST)
.port(HTTP_DEV_PORT)
.public(HTTP_DEV_PUBLIC);
.public(HTTP_DEV_PUBLIC)
.stats({
children: false,
entrypoints: false,
modules: false,
warningsFilter: [/Failed to parse source map/],
});
}
neutrino.config.node
.set('Buffer', true);