pxDot

Results 5 issues of pxDot

Prerendering is not working if you have e.g. two webpack configs in an array like described here: https://webpack.js.org/configuration/configuration-types/#exporting-multiple-configurations The prerendering (with puppeteer) is rendering one config just fine, the second...

In backend nodejs projects the DOM types (`HTMLElement`) are only accessible if included explicitly by e.g. `"lib": ["ES2020", "dom"]` in tsconfig. Building without the included dom types gives the following...

### Summary of changes Make header keys case insensitive in `RequestBuilder`. This still has the potential issue of variable name casing not being respected though, so I'm not sure if...

Using HttpHeader as controller param seems to be case sensitive but should be case insensitive. Seems to only be an issue when sending requests via a `TestingFacade` app. ```TS @http.POST('testcontrollerfunction')...

Constructing a query like this ```TS let dbQuery = this.itemsPerPage(itemsPerPage).page(page); const [items, total] = await Promise.all([dbQuery.find(), dbQuery.count()]); ``` throws ``` [ERROR] Controller error TypeError: Cannot read properties of undefined (reading...