Niklas Frank

Results 7 comments of Niklas Frank

I can put up a PR for this. I'm just wondering if 1) we want it to work the way Goober expects it. Wrapping the arguments with an array. or...

same error ```JSON { "compilerOptions": { "target": "ES2020", "lib": ["dom", "dom.iterable", "esnext"], "allowJs": true, "skipLibCheck": true, "strict": true, "forceConsistentCasingInFileNames": true, "noEmit": true, "esModuleInterop": true, "module": "ES2020", "moduleResolution": "Node", "resolveJsonModule": true,...

can we get this security vulnerability fix released?

you can access the express app by passing in a `onServer` callback to `hypernova(config, onServer)`, that way you can add your middlewares after `body-parser` https://github.com/airbnb/hypernova/blob/master/src/worker.js#L124

it's unfortunate that `:` was selected as the delimiter. stops us from targeting the element within a inline style block ```tsx const breakpointMap = { base: 0, xs: 375, sm:...

> I would like to note if you'd like to select an element in the DOM where it has its ID generated by `useId`, you can do something like the...

this option would help a lot in Dockerfiles an abbreviated example ```Dockerfile FROM oven/bun:slim AS base FROM base as dependencies COPY bun.lockb package.json ./ RUN bun install FROM dependencies AS...