grantbi
grantbi
I figured it a partial solution. One needs to add the head tags in storybook to load any external font libraries. https://storybook.js.org/configurations/add-custom-head-tags/ Also, add some external font links to the...
You could try using this idea: Change flambe.platform.html.HtmlStage.hx line 34: //scaleFactor = computeScaleFactor(); (Comment this out) scaleFactor = 1; (This fixes the high DPI resolution problems on iOS 4+ Retina.)...
Not sure if this helps, but I was able to get the setup working with a hybrid of this example: https://github.com/sails101/even-more-passport
 Although I have the same issue, this is the error for me. I'm not sure why the template isn't loading. ``` if...
The problem is the `value` is something like: ``` {"decoder":{},"shouldInlineParams":false,"queryChunks":[{"value":["(CURRENT_TIMESTAMP)"]}]} ``` So I just changed the line in 103 to: `const unix = value?.getTime?.() ?? Date.now();` I'm not sure why...