Jason Miller
Jason Miller
@nisarhassan12 - any idea if there's a way to move the dotfiles into a folder so they aren't in the repo root? Cheers
This is how Preact works - it is setting the `id` _property_, not the `id` _attribute_. When you assign a non-string value to a DOM reflected property like `id`, it...
HTM doesn't decode HTML Entities because doing so requires one of two things: - a huge map of entities, which would be many times larger than HTM itself and would...
Hiya! I do think this would be really nice to offer, but as you mentioned it's a bit of a divergence from what the `standalone` entry has previously included. FWIW,...
Another thing we can consider here is applying the Preact's minification processes to a bundled JS Modules version - with constant inlining, hoisting and a customized terser config I'm sure...
The main reason this is problematic is that we don't really know enough to assume that `contact/foo/bar/index.js` in your example is a Route. It could just be a component loaded...
We don't want to write these out as files, do we? ("static API routes"?) ``` build/product/doll/white build/__preact_data/product/doll/white.json ```
You need to import the package name in your source, not the entry filename: ```ts // index.ts export * from './main'; // main.ts export class Thing {} // a.ts import...
The only way I can think of to do this would be to string-replace `"use client"` to something Terser will never minify/inline/fold, then string-replace it back after minification. There are...