Always stop webpack watch on android

b1300d403c22b84ae1dd25608934f28615cddc71

Cohee <18619528+Cohee1207@users.noreply.github.com>

1 files changed, +1 -1Ignore whitespace
src/middleware/webpack-serve.js+1 -1
@@ -6,7 +6,7 @@ import { publicLibConfig } from '../../webpack.config.js';
66export default function getWebpackServeMiddleware() {
77 const compiler = webpack(publicLibConfig);
88
99 if (process.env.NODE_ENV === 'production' || process.platform === 'android') {
1010 compiler.hooks.done.tap('serve', () => {
1111 if (compiler.watching) {
1212 compiler.watching.close(() => { });