Jason Miller

Results 1189 comments of Jason Miller

When I test this locally, I am not seeing smooth scrolling - it's instant. Maybe you have a script or extension that is intercepting this and applying smooth scrolling?

Ah - sorry, I had missed that you were asking for this as a way to override global `scrolling-behavior:smooth`.

Hiya @nachaos - the issue here is that your imports are for files. If you want to use multiple entries, you need to import _packages_: ```diff // c.ts -import {...

Service Workers cannot be loaded from a Data URL or Blob URL, only HTTP(S) URLs are supported. I'm not sure how Microbundle could know the correct URL to use, since...

I just peeked at the source - I would recommend doing this: ```js { "main": "./dist/web3-service-worker-cache.js", "module": "./dist/web3-service-worker-cache.module.js", "scripts": { "build": "microbundle -f iife --external none src/sw.js && microbundle src/index.js"...

The worker bundling seems interesting, I'll take a look. The problem last time I tried to land this was that there isn't actually a way to bundle workers and get...

Ah - sorry for.missing those tweets, I don't scan for #react tweets, only #preact ones. I think a lot of people use [static-site-generator-webpack-plugin](https://github.com/markdalgleish/static-site-generator-webpack-plugin). I actually set this up for preactjs.com...

The frontend dynamically fetches markdown files from a `content/` directory, and shows a loading spinner while doing so. When I pre-rendered everything with seeded data, it would just immediately rip...

This is actually correct - the original code causes an unrecoverable error when renderGames() is called in Safari 10 and 11 (there is a bug relating to async arrow functions...

For that you'd want to ignore the "modern" output format and use the "esm" format, then specify your support target using [Browserslist](https://github.com/browserslist/browserslist#packagejson): ``` // package.json { "browserslist": [ "last 2...