Wiadev

Results 5 comments of Wiadev

I've followed your commits and managed to upgrade to webpack 4. but after upgrading webpack 4, the hot-reload time is relatively very slow, not even close to webpack 3. Do...

webpack.config.dev.js ``` import webpack from "webpack"; import HtmlWebpackPlugin from "html-webpack-plugin"; import HtmlReplaceWebpackPlugin from "html-replace-webpack-plugin"; import path from "path"; import HardSourceWebpackPlugin from "hard-source-webpack-plugin"; import CompressionPlugin from 'compression-webpack-plugin'; const zopfli = require('@gfx/zopfli');...

I've just followed compression config from their README. I thought I should have it in dev config as well. Do we need it for prod only?

@yaliv Was your suggestion addressed in new releases?

@mattslocum I have same issue. so I wanna call the service in webworker but it's not working. check out the following example, please. ``` function setEvent(event) { console.log('event', event); EventService.set(event)...