@@ -1328,10 +1328,10 @@ export interface BuildArgs extends ParentSpanPluginArgs {
1328
1328
}
1329
1329
1330
1330
export interface Actions {
1331
- /** @see https://www.gatsbyjs.com/docs/actions/#deletePage */
1331
+ /** @see https://www.gatsbyjs.com/docs/reference/config-files/ actions/#deletePage */
1332
1332
deletePage ( this : void , args : { path : string ; component : string } ) : void
1333
1333
1334
- /** @see https://www.gatsbyjs.com/docs/actions/#createPage */
1334
+ /** @see https://www.gatsbyjs.com/docs/reference/config-files/ actions/#createPage */
1335
1335
createPage < TContext = Record < string , unknown > > (
1336
1336
this : void ,
1337
1337
args : Page < TContext > ,
@@ -1347,21 +1347,21 @@ export interface Actions {
1347
1347
option ?: ActionOptions
1348
1348
) : void
1349
1349
1350
- /** @see https://www.gatsbyjs.com/docs/actions/#deleteNode */
1350
+ /** @see https://www.gatsbyjs.com/docs/reference/config-files/ actions/#deleteNode */
1351
1351
deleteNode ( node : NodeInput , plugin ?: ActionPlugin ) : void
1352
1352
1353
- /** @see https://www.gatsbyjs.com/docs/actions/#createNode */
1353
+ /** @see https://www.gatsbyjs.com/docs/reference/config-files/ actions/#createNode */
1354
1354
createNode < TNode = Record < string , unknown > > (
1355
1355
this : void ,
1356
1356
node : NodeInput & TNode ,
1357
1357
plugin ?: ActionPlugin ,
1358
1358
options ?: ActionOptions
1359
1359
) : void | Promise < void >
1360
1360
1361
- /** @see https://www.gatsbyjs.com/docs/actions/#touchNode */
1361
+ /** @see https://www.gatsbyjs.com/docs/reference/config-files/ actions/#touchNode */
1362
1362
touchNode ( node : NodeInput , plugin ?: ActionPlugin ) : void
1363
1363
1364
- /** @see https://www.gatsbyjs.com/docs/actions/#createNodeField */
1364
+ /** @see https://www.gatsbyjs.com/docs/reference/config-files/ actions/#createNodeField */
1365
1365
createNodeField (
1366
1366
this : void ,
1367
1367
args : {
@@ -1373,7 +1373,7 @@ export interface Actions {
1373
1373
options ?: ActionOptions
1374
1374
) : void
1375
1375
1376
- /** @see https://www.gatsbyjs.com/docs/actions/#createParentChildLink */
1376
+ /** @see https://www.gatsbyjs.com/docs/reference/config-files/ actions/#createParentChildLink */
1377
1377
createParentChildLink (
1378
1378
this : void ,
1379
1379
args : { parent : Node ; child : NodeInput } ,
@@ -1391,44 +1391,44 @@ export interface Actions {
1391
1391
plugin ?: ActionPlugin
1392
1392
) : void
1393
1393
1394
- /** @see https://www.gatsbyjs.com/docs/actions/#setRequestHeaders */
1394
+ /** @see https://www.gatsbyjs.com/docs/reference/config-files/ actions/#setRequestHeaders */
1395
1395
setRequestHeaders (
1396
1396
this : void ,
1397
1397
args : { domain : string ; headers : Record < string , string > } ,
1398
1398
plugin ?: ActionPlugin
1399
1399
) : void
1400
1400
1401
- /** @see https://www.gatsbyjs.com/docs/actions/#setWebpackConfig */
1401
+ /** @see https://www.gatsbyjs.com/docs/reference/config-files/ actions/#setWebpackConfig */
1402
1402
setWebpackConfig ( this : void , config : object , plugin ?: ActionPlugin ) : void
1403
1403
1404
- /** @see https://www.gatsbyjs.com/docs/actions/#replaceWebpackConfig */
1404
+ /** @see https://www.gatsbyjs.com/docs/reference/config-files/ actions/#replaceWebpackConfig */
1405
1405
replaceWebpackConfig ( this : void , config : object , plugin ?: ActionPlugin ) : void
1406
1406
1407
- /** @see https://www.gatsbyjs.com/docs/actions/#setBabelOptions */
1407
+ /** @see https://www.gatsbyjs.com/docs/reference/config-files/ actions/#setBabelOptions */
1408
1408
setBabelOptions ( this : void , options : object , plugin ?: ActionPlugin ) : void
1409
1409
1410
- /** @see https://www.gatsbyjs.com/docs/actions/#setBabelPlugin */
1410
+ /** @see https://www.gatsbyjs.com/docs/reference/config-files/ actions/#setBabelPlugin */
1411
1411
setBabelPlugin (
1412
1412
this : void ,
1413
1413
config : { name : string ; options : object } ,
1414
1414
plugin ?: ActionPlugin
1415
1415
) : void
1416
1416
1417
- /** @see https://www.gatsbyjs.com/docs/actions/#setBabelPreset */
1417
+ /** @see https://www.gatsbyjs.com/docs/reference/config-files/ actions/#setBabelPreset */
1418
1418
setBabelPreset (
1419
1419
this : void ,
1420
1420
config : { name : string ; options : object } ,
1421
1421
plugin ?: ActionPlugin
1422
1422
) : void
1423
1423
1424
- /** @see https://www.gatsbyjs.com/docs/actions/#createJob */
1424
+ /** @see https://www.gatsbyjs.com/docs/reference/config-files/ actions/#createJob */
1425
1425
createJob (
1426
1426
this : void ,
1427
1427
job : Record < string , unknown > & { id : string } ,
1428
1428
plugin ?: ActionPlugin
1429
1429
) : void
1430
1430
1431
- /** @see https://www.gatsbyjs.com/docs/actions/#createJobV2 */
1431
+ /** @see https://www.gatsbyjs.com/docs/reference/config-files/ actions/#createJobV2 */
1432
1432
createJobV2 (
1433
1433
this : void ,
1434
1434
job : {
@@ -1440,27 +1440,27 @@ export interface Actions {
1440
1440
plugin ?: ActionPlugin
1441
1441
) : Promise < unknown >
1442
1442
1443
- /** @see https://www.gatsbyjs.com/docs/actions/#addGatsbyImageSourceUrl */
1443
+ /** @see https://www.gatsbyjs.com/docs/reference/config-files/ actions/#addGatsbyImageSourceUrl */
1444
1444
addGatsbyImageSourceUrl ( this : void , sourceUrl : string ) : void
1445
1445
1446
- /** @see https://www.gatsbyjs.com/docs/actions/#setJob */
1446
+ /** @see https://www.gatsbyjs.com/docs/reference/config-files/ actions/#setJob */
1447
1447
setJob (
1448
1448
this : void ,
1449
1449
job : Record < string , unknown > & { id : string } ,
1450
1450
plugin ?: ActionPlugin
1451
1451
) : void
1452
1452
1453
- /** @see https://www.gatsbyjs.com/docs/actions/#endJob */
1453
+ /** @see https://www.gatsbyjs.com/docs/reference/config-files/ actions/#endJob */
1454
1454
endJob ( this : void , job : { id : string } , plugin ?: ActionPlugin ) : void
1455
1455
1456
- /** @see https://www.gatsbyjs.com/docs/actions/#setPluginStatus */
1456
+ /** @see https://www.gatsbyjs.com/docs/reference/config-files/ actions/#setPluginStatus */
1457
1457
setPluginStatus (
1458
1458
this : void ,
1459
1459
status : Record < string , unknown > ,
1460
1460
plugin ?: ActionPlugin
1461
1461
) : void
1462
1462
1463
- /** @see https://www.gatsbyjs.com/docs/actions/#createRedirect */
1463
+ /** @see https://www.gatsbyjs.com/docs/reference/config-files/ actions/#createRedirect */
1464
1464
createRedirect (
1465
1465
this : void ,
1466
1466
redirect : {
@@ -1476,15 +1476,15 @@ export interface Actions {
1476
1476
plugin ?: ActionPlugin
1477
1477
) : void
1478
1478
1479
- /** @see https://www.gatsbyjs.com/docs/actions/#addThirdPartySchema */
1479
+ /** @see https://www.gatsbyjs.com/docs/reference/config-files/ actions/#addThirdPartySchema */
1480
1480
addThirdPartySchema (
1481
1481
this : void ,
1482
1482
args : { schema : object } ,
1483
1483
plugin ?: ActionPlugin ,
1484
1484
traceId ?: string
1485
1485
) : void
1486
1486
1487
- /** @see https://www.gatsbyjs.com/docs/actions/#createTypes */
1487
+ /** @see https://www.gatsbyjs.com/docs/reference/config-files/ actions/#createTypes */
1488
1488
createTypes (
1489
1489
this : void ,
1490
1490
types :
@@ -1496,7 +1496,7 @@ export interface Actions {
1496
1496
traceId ?: string
1497
1497
) : void
1498
1498
1499
- /** @see https://www.gatsbyjs.com/docs/actions/#createFieldExtension */
1499
+ /** @see https://www.gatsbyjs.com/docs/reference/config-files/ actions/#createFieldExtension */
1500
1500
createFieldExtension (
1501
1501
this : void ,
1502
1502
extension : object ,
@@ -1521,7 +1521,7 @@ export interface Actions {
1521
1521
*/
1522
1522
enableStatefulSourceNodes ?( this : void , plugin ?: ActionPlugin ) : void
1523
1523
1524
- /** @see https://www.gatsbyjs.com/docs/actions/#addRemoteFileAllowedUrl */
1524
+ /** @see https://www.gatsbyjs.com/docs/reference/config-files/ actions/#addRemoteFileAllowedUrl */
1525
1525
addRemoteFileAllowedUrl ?(
1526
1526
this : void ,
1527
1527
url : string | Array < string > ,
0 commit comments