Wenpeng

Results 4 comments of Wenpeng

i use angular 16, and add config like this: `"allowedCommonJsDependencies": [ "raf", "core-js", "dompurify", "html2canvas", "rgbcolor" ],` no warning for run `npm run start`

```javascript import {Interceptor, InterceptedRequest, InterceptedResponse} from 'ng2-interceptors'; import {Events} from "ionic-angular"; import {Injectable} from "@angular/core"; @Injectable() export class ServerURLInterceptor implements Interceptor { constructor(public events: Events) { } public interceptBefore(request: InterceptedRequest):...