Hi,
First, let me say it, great repository
My app writes json files and every time it does the hot reload kicks in, throwing the user back at the home page. Is there any way to configure/disable it? I’ve looked into webpack.config.js
and both main.ts
with no luck…
@EdoardoSchnell @speccaN, the hot-reload is basically done in this project using Webpack’s watch feature, it’s implemented here in the NPM scripts that starts your application.
angular-electron/package.json
Line 22
in
32b56c4
I guess to disable it you gotta remove the
webpack:watch
part of the start script.@speccaN you’re most welcome