fix(llm.gblib): Fix in doc. publishing.
This commit is contained in:
parent
93c6c51f3a
commit
a71d8983b1
2 changed files with 2564 additions and 2 deletions
2558
packages/basic.gblib/services/GBTranspiler.ts
Normal file
2558
packages/basic.gblib/services/GBTranspiler.ts
Normal file
File diff suppressed because it is too large
Load diff
|
@ -1578,8 +1578,12 @@ export class KBService implements IGBKBService {
|
||||||
|
|
||||||
// Stop all scripts and requests
|
// Stop all scripts and requests
|
||||||
await page.setRequestInterception(true);
|
await page.setRequestInterception(true);
|
||||||
page.on('request', request => request.abort());
|
// Stop all scripts and requests
|
||||||
|
await page.setRequestInterception(true);
|
||||||
|
page.on('request', request => {
|
||||||
|
if (!request.isInterceptResolutionHandled()) {
|
||||||
|
request.abort();
|
||||||
|
}
|
||||||
|
|
||||||
const parsedUrl = new URL(url);
|
const parsedUrl = new URL(url);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue