Skip to content

Commit

Permalink
chore: use ts-ignore to avoid differences between local and CI
Browse files Browse the repository at this point in the history
  • Loading branch information
digitalsadhu committed Aug 19, 2024
1 parent c51e6ec commit dcd9a2c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/podlet.js
Original file line number Diff line number Diff line change
Expand Up @@ -878,14 +878,14 @@ export default class PodiumPodlet {

// Determine if the request should be proxied and do if so
if (incoming.development && proxy) {
// @ts-expect-error
// @ts-ignore
await this.httpProxy.process(incoming);
}

// @ts-expect-error
// @ts-ignore
const js = incoming.js.map((asset) => asset.toHeader());

// @ts-expect-error
// @ts-ignore
const css = incoming.css.map((asset) => asset.toHeader());

// Send early hints to layout client in the form of a 103 status code and a link header with js/css asset information.
Expand Down

0 comments on commit dcd9a2c

Please sign in to comment.