Tom

Results 16 comments of Tom

@adamchenwei I don't know, I haven't delved in to the react scripts enough to find out. @miggu You're very welcome Please be aware that I consider this a temporary solution....

> @jsdevtom > > > Using this to the package.json worked for me: "start:debug": > > How do you start the app then? > > ``` > $ npm start...

The solution was to add `minimize: false` to the schema. I strongly suggest changing this setting to false by default. Changing the object asked to be saved in order to...

Thanks for your reply. Got it :+1: Would it be possible/desirable to change the behaviour of `minify` to save the empty object if one was provided and not to do...

A slight change to @yogeshgadge's solution and changing the buffers as suggested by @kubex320 solved all the white space issues. ``` {{item.viewValue}} ``` ``` @Input() optionSizePx = 48; @Input() numOptionsToShow...

Here is the workaround I use (TypeScript): ```typescript function firePopstateOnRoute(window: DOMWindow): void { const { history } = window; const originalBack = history.back; const originalForwards = history.forward; (history as unknown...