Ignacio F. Castillejo Gómez
Ignacio F. Castillejo Gómez
I found the way. Adding `autoReload` to `true` in the strapi instance the content type builder is again enable: ``` const tsConfig = require('../../../../tsconfig.base.json') const tsConfigPaths = require('tsconfig-paths') const strapi...
After some time trying to replicate the strapi develop script I found the way the server restarts automatically: ``` const cluster = require('cluster') const tsConfig = require('../../../../tsconfig.base.json') const tsConfigPaths =...
Seeing the develop strapi script It's possible to run with watch mode. Here is the script with watch mode and restart capabilities: ``` const cluster = require('cluster') const tsConfig =...
@taherelsheikh sorry for the big delay. I made my own emoji picker render emojis from emoji-datasource by images. Also have render performan issues. In the next weeks I'll try the...
When I developed this library I've tried to retrieve this information but was not possible only fetching data from the degiro API. You can inspect the degiro webpage usage to...
The problem with that is `JSON.parse` statement block the libuv event loop and has implies a performance degradation on each request. Maybe to improve this workaround we should parse the...
You have to create a singleton instance per request. This library doesn't offer you any other solution