Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
109 views

I'm testing components built with shadcn/ui, which uses Radix UI under the hood. When running UI interaction tests using Vitest and @testing-library/user-event, I keep getting the following error: ...
Palladio's user avatar
0 votes
0 answers
35 views

My goal is to collect and graph CPU usage for the host. I have a simple Vite project and am using vite-plugin-node-polyfills to try to use the os JS method. However, it just returns an empty object. I ...
Andrew Hollingworth's user avatar
0 votes
0 answers
44 views

I am creating a WebComponent and passing in css ( text ) to create a CSSStyleSheet object, which is then added to the adoptedStyleSheets in the shadowRoot. class View extends HTMLElement { ...
Max Nakama's user avatar
0 votes
1 answer
181 views

I am trying to build an app that uses react-pdf/renderer. I will send a pdf response from node js express server. The fonts I use in react-pdf/renderer (.ttf) seems like are fetched via XMLHttpRequest ...
Oki's user avatar
  • 3,365
1 vote
0 answers
1k views

I'm working on a project that leverages a third party library, which uses the checkVisibility() function. I have a few users reporting errors and console is showing TypeError: checkVisibility is not a ...
learyjk's user avatar
  • 781
1 vote
2 answers
3k views

I'm using Angular 16. Since I've install the Dragula dependency ng2-dragula I have an issue on compilation. As it's said on the readme of the module => "Important: add the following line to ...
Fizik26's user avatar
  • 863
1 vote
0 answers
38 views

When I created a project in NestJS, I encountered different errors in different browsers. For example, I implemented a button that uses the microphone, and it works perfectly in Chrome but not in ...
Arun Vinod K's user avatar
1 vote
0 answers
968 views

I noticed that when loading my website, it tries to fetch something from polyfill.io which severly slows down loading time and is potentially harmful. I can see two links in the source code of every ...
Sprytny's user avatar
  • 15
9 votes
3 answers
8k views

My web app is in Angular and today I got a message from Google Cloud Platform, its mentioned a "Notification Title: [Security Alert]: Polyfill.io Issue for Google Maps Platform users". How ...
Jawad's user avatar
  • 101
43 votes
2 answers
16k views

I just upgraded to Angular 18 and I get the following warning when I do ng serve: ▲ [WARNING] Polyfill for "@angular/localize/init" was added automatically. [plugin angular-polyfills] In ...
Mihai Socaciu's user avatar
1 vote
2 answers
402 views

I was trying to write a Polyfill for array sorting in javascript. However it turns out that the comparator doesn't cause any effect on the Polyfill. Any ideas how to make it work? const arrA = [2, ...
Subhojit's user avatar
  • 1,539
1 vote
2 answers
3k views

Angular states in its documentation that it is compatible with 2 most recent versions (and latest+ESR for Firefox) for all major browsers. Since Angular uses standard DOM API under the hood it should ...
Max's user avatar
  • 1,268
0 votes
1 answer
144 views

I am trying to use oslo to implement auth functionality in my remix app. When importing oslo/password and rebuilding my app, the build fails with this error message: ✘ [ERROR] No matching export in &...
Ferb300's user avatar
  • 73
0 votes
1 answer
1k views

ReadableStream.from for browsers is currently only supported in Firefox. I found the Node implementation in JavaScript, but it uses a lot of internal native node functions. Likewise, ReadableStream....
Mario Ishac's user avatar
  • 6,107
0 votes
0 answers
62 views

This is my polyfill for call method Function.prototype.mycall = (obj,...args)=>{ if(typeof this!="function") throw new Error("mycall can only be used on a function") obj....
sai velagala's user avatar
0 votes
0 answers
328 views

I have an Angular app and I'm facing this error when I change the to on my index.html the application works. I need use this "/boleto_coop_front/" instead "/" on the base href to ...
Davi Farias's user avatar
-1 votes
2 answers
626 views

I'm trying to implement express.js into my react js Project, but when I add those two lines to my app.js code: const express = require('express') const app = express()" I am facing the following ...
Nicode code's user avatar
0 votes
1 answer
116 views

Background I have a web application that currently runs on the Edge Internet Explorer mode. I want to port this application to modern browsers like Edge or Chrome. The JavaScript in this application ...
SATO Yusuke's user avatar
  • 2,304
1 vote
0 answers
515 views

When using a pdfjs worker, I get this issue on older browsers. I am suspecting that the new feature # for private class is not being polyfilled. I have however no idea how to solve this. I would ...
SaroGFX's user avatar
  • 989
2 votes
0 answers
207 views

I am looking for polyfill loading mechanism as webpack do with babel for Angular. I am still using Angular 14. I use string replaceAll in my ts code. Add chrome 70 in the .browserslistrc and hope to ...
karanba's user avatar
  • 197
1 vote
0 answers
735 views

sorry to bother you with my tiny problem. After reading threw the previous questions about the same error and installing nodejs and npm to the latest versions, the error is still showing up. And I ...
user22178000's user avatar
1 vote
1 answer
3k views

I have an angular application which I recently upgraded to angular 15. I have a requirement to support it in Chrome 69 browser. When I run in Chrome 69, I get 2 errors which are related to the ...
Nitin Avula's user avatar
2 votes
0 answers
2k views

I recently upgraded my angular app from v14 to v15. Due to a business need, we need to support Chrome 69 for the app. So, I added the following lines of code in my polyfills.ts file: import '@angular/...
Nitin Avula's user avatar
2 votes
1 answer
3k views

I am getting an error while building my Angular App on Jenkins. Am upgrading from Angular8 to Angular15 with no errors in my local. I believe my issue could be somewhere on polyfills.ts. tsconfig.app....
papercutbut's user avatar
3 votes
1 answer
3k views

I am trying to integrate Voice JavaScript SDK into an Angular 15 application. After installing the required npm packages, if I run the app I am getting the below error in browser console and UI is not ...
Chandan Ankush Gauns's user avatar

1
2 3 4 5
19