This repository was archived by the owner on Jul 6, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +14
-5
lines changed Expand file tree Collapse file tree 1 file changed +14
-5
lines changed Original file line number Diff line number Diff line change @@ -1331,6 +1331,12 @@ export class Project {
1331
1331
...pageModuleTree . map ( ( { id } ) => this . _lookupDeps ( id ) . filter ( dep => ! ! dep . isStyle ) ) . flat ( )
1332
1332
] . flat ( )
1333
1333
)
1334
+ console . log ( '---' , {
1335
+ head,
1336
+ body,
1337
+ data,
1338
+ scripts
1339
+ } )
1334
1340
ret . head = head
1335
1341
ret . scripts = await Promise . all ( scripts . map ( async ( script : Record < string , any > ) => {
1336
1342
if ( script . innerText && ! this . isDev ) {
@@ -1368,10 +1374,14 @@ export class Project {
1368
1374
undefined ,
1369
1375
E404 ,
1370
1376
[ ] ,
1371
- [
1372
- e404Module ? this . _lookupDeps ( e404Module . id ) . filter ( dep => ! ! dep . isStyle ) : [ ]
1373
- ] . flat ( )
1377
+ e404Module ? this . _lookupDeps ( e404Module . id ) . filter ( dep => ! ! dep . isStyle ) : [ ]
1374
1378
)
1379
+ console . log ( '---' , {
1380
+ head,
1381
+ body,
1382
+ data,
1383
+ scripts
1384
+ } )
1375
1385
ret . head = head
1376
1386
ret . scripts = await Promise . all ( scripts . map ( async ( script : Record < string , any > ) => {
1377
1387
if ( script . innerText && ! this . isDev ) {
@@ -1398,8 +1408,7 @@ export class Project {
1398
1408
1399
1409
const {
1400
1410
head,
1401
- body,
1402
- data
1411
+ body
1403
1412
} = await this . #renderer. renderPage (
1404
1413
url ,
1405
1414
undefined ,
You can’t perform that action at this time.
0 commit comments