File size: 55,905 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 |
use anyhow::{Context, Result, bail};
use rustc_hash::FxHashSet;
use serde::{Deserialize, Deserializer, Serialize};
use serde_json::Value as JsonValue;
use turbo_esregex::EsRegex;
use turbo_rcstr::{RcStr, rcstr};
use turbo_tasks::{
FxIndexMap, NonLocalValue, OperationValue, ResolvedVc, TaskInput, Vc, debug::ValueDebugFormat,
trace::TraceRawVcs,
};
use turbo_tasks_env::{EnvMap, ProcessEnv};
use turbo_tasks_fetch::FetchClient;
use turbo_tasks_fs::FileSystemPath;
use turbopack::module_options::{
ConditionItem, ConditionPath, LoaderRuleItem, OptionWebpackRules,
module_options_context::{MdxTransformOptions, OptionWebpackConditions},
};
use turbopack_core::{
issue::{Issue, IssueExt, IssueStage, OptionStyledString, StyledString},
resolve::ResolveAliasMap,
};
use turbopack_ecmascript::{OptionTreeShaking, TreeShakingMode};
use turbopack_ecmascript_plugins::transform::{
emotion::EmotionTransformConfig, relay::RelayConfig,
styled_components::StyledComponentsTransformConfig,
};
use turbopack_node::transforms::webpack::{WebpackLoaderItem, WebpackLoaderItems};
use crate::{
mode::NextMode, next_import_map::mdx_import_source_file,
next_shared::transforms::ModularizeImportPackageConfig,
};
#[turbo_tasks::value]
struct NextConfigAndCustomRoutes {
config: ResolvedVc<NextConfig>,
custom_routes: ResolvedVc<CustomRoutes>,
}
#[turbo_tasks::value]
struct CustomRoutes {
rewrites: ResolvedVc<Rewrites>,
}
#[turbo_tasks::value(transparent)]
pub struct ModularizeImports(FxIndexMap<String, ModularizeImportPackageConfig>);
#[turbo_tasks::value(transparent)]
#[derive(Clone, Debug)]
pub struct CacheKinds(FxHashSet<RcStr>);
impl CacheKinds {
pub fn extend<I: IntoIterator<Item = RcStr>>(&mut self, iter: I) {
self.0.extend(iter);
}
}
impl Default for CacheKinds {
fn default() -> Self {
CacheKinds(
["default", "remote", "private"]
.iter()
.map(|&s| s.into())
.collect(),
)
}
}
#[turbo_tasks::value(eq = "manual")]
#[derive(Clone, Debug, Default, PartialEq)]
#[serde(default, rename_all = "camelCase")]
pub struct NextConfig {
// TODO all fields should be private and access should be wrapped within a turbo-tasks function
// Otherwise changing NextConfig will lead to invalidating all tasks accessing it.
pub config_file: Option<RcStr>,
pub config_file_name: RcStr,
/// In-memory cache size in bytes.
///
/// If `cache_max_memory_size: 0` disables in-memory caching.
pub cache_max_memory_size: Option<f64>,
/// custom path to a cache handler to use
pub cache_handler: Option<RcStr>,
pub env: FxIndexMap<String, JsonValue>,
pub experimental: ExperimentalConfig,
pub images: ImageConfig,
pub page_extensions: Vec<RcStr>,
pub react_production_profiling: Option<bool>,
pub react_strict_mode: Option<bool>,
pub transpile_packages: Option<Vec<RcStr>>,
pub modularize_imports: Option<FxIndexMap<String, ModularizeImportPackageConfig>>,
pub dist_dir: Option<RcStr>,
pub deployment_id: Option<RcStr>,
sass_options: Option<serde_json::Value>,
pub trailing_slash: Option<bool>,
pub asset_prefix: Option<RcStr>,
pub base_path: Option<RcStr>,
pub skip_middleware_url_normalize: Option<bool>,
pub skip_trailing_slash_redirect: Option<bool>,
pub i18n: Option<I18NConfig>,
pub cross_origin: Option<CrossOriginConfig>,
pub dev_indicators: Option<DevIndicatorsConfig>,
pub output: Option<OutputType>,
pub turbopack: Option<TurbopackConfig>,
production_browser_source_maps: bool,
output_file_tracing_includes: Option<serde_json::Value>,
output_file_tracing_excludes: Option<serde_json::Value>,
// TODO: This option is not respected, it uses Turbopack's root instead.
output_file_tracing_root: Option<RcStr>,
/// Enables the bundling of node_modules packages (externals) for pages
/// server-side bundles.
///
/// [API Reference](https://nextjs.org/docs/pages/api-reference/next-config-js/bundlePagesRouterDependencies)
pub bundle_pages_router_dependencies: Option<bool>,
/// A list of packages that should be treated as external on the server
/// build.
///
/// [API Reference](https://nextjs.org/docs/app/api-reference/next-config-js/serverExternalPackages)
pub server_external_packages: Option<Vec<RcStr>>,
#[serde(rename = "_originalRedirects")]
pub original_redirects: Option<Vec<Redirect>>,
// Partially supported
pub compiler: Option<CompilerConfig>,
pub optimize_fonts: Option<bool>,
// unsupported
amp: AmpConfig,
clean_dist_dir: bool,
compress: bool,
eslint: EslintConfig,
exclude_default_moment_locales: bool,
// this can be a function in js land
export_path_map: Option<serde_json::Value>,
// this is a function in js land
generate_build_id: Option<serde_json::Value>,
generate_etags: bool,
http_agent_options: HttpAgentConfig,
on_demand_entries: OnDemandEntriesConfig,
powered_by_header: bool,
public_runtime_config: FxIndexMap<String, serde_json::Value>,
server_runtime_config: FxIndexMap<String, serde_json::Value>,
static_page_generation_timeout: f64,
target: Option<String>,
typescript: TypeScriptConfig,
use_file_system_public_routes: bool,
webpack: Option<serde_json::Value>,
}
#[derive(
Clone, Debug, PartialEq, Serialize, Deserialize, TraceRawVcs, NonLocalValue, OperationValue,
)]
#[serde(rename_all = "kebab-case")]
pub enum CrossOriginConfig {
Anonymous,
UseCredentials,
}
#[derive(
Clone,
Debug,
Default,
PartialEq,
Serialize,
Deserialize,
TraceRawVcs,
NonLocalValue,
OperationValue,
)]
#[serde(rename_all = "camelCase")]
struct AmpConfig {
canonical_base: Option<String>,
}
#[derive(
Clone,
Debug,
Default,
PartialEq,
Serialize,
Deserialize,
TraceRawVcs,
NonLocalValue,
OperationValue,
)]
#[serde(rename_all = "camelCase")]
struct EslintConfig {
dirs: Option<Vec<String>>,
ignore_during_builds: Option<bool>,
}
#[derive(
Clone,
Debug,
Default,
PartialEq,
Serialize,
Deserialize,
TraceRawVcs,
NonLocalValue,
OperationValue,
)]
#[serde(rename_all = "kebab-case")]
pub enum BuildActivityPositions {
#[default]
BottomRight,
BottomLeft,
TopRight,
TopLeft,
}
#[derive(
Clone,
Debug,
Default,
PartialEq,
Serialize,
Deserialize,
TraceRawVcs,
NonLocalValue,
OperationValue,
)]
#[serde(rename_all = "camelCase")]
pub struct DevIndicatorsOptions {
pub build_activity_position: Option<BuildActivityPositions>,
pub position: Option<BuildActivityPositions>,
}
#[derive(
Clone, Debug, PartialEq, Serialize, Deserialize, TraceRawVcs, NonLocalValue, OperationValue,
)]
#[serde(untagged)]
pub enum DevIndicatorsConfig {
WithOptions(DevIndicatorsOptions),
Boolean(bool),
}
#[derive(
Clone,
Debug,
Default,
PartialEq,
Serialize,
Deserialize,
TraceRawVcs,
NonLocalValue,
OperationValue,
)]
#[serde(rename_all = "camelCase")]
struct OnDemandEntriesConfig {
max_inactive_age: f64,
pages_buffer_length: f64,
}
#[derive(
Clone,
Debug,
Default,
PartialEq,
Serialize,
Deserialize,
TraceRawVcs,
NonLocalValue,
OperationValue,
)]
#[serde(rename_all = "camelCase")]
struct HttpAgentConfig {
keep_alive: bool,
}
#[derive(
Clone, Debug, PartialEq, Serialize, Deserialize, TraceRawVcs, NonLocalValue, OperationValue,
)]
#[serde(rename_all = "camelCase")]
pub struct DomainLocale {
pub default_locale: String,
pub domain: String,
pub http: Option<bool>,
pub locales: Option<Vec<String>>,
}
#[derive(
Clone, Debug, PartialEq, Serialize, Deserialize, TraceRawVcs, NonLocalValue, OperationValue,
)]
#[serde(rename_all = "camelCase")]
pub struct I18NConfig {
pub default_locale: String,
pub domains: Option<Vec<DomainLocale>>,
pub locale_detection: Option<bool>,
pub locales: Vec<String>,
}
#[derive(
Clone, Debug, PartialEq, Serialize, Deserialize, TraceRawVcs, NonLocalValue, OperationValue,
)]
#[serde(rename_all = "kebab-case")]
pub enum OutputType {
Standalone,
Export,
}
#[derive(
Debug,
Clone,
Hash,
Eq,
PartialEq,
Ord,
PartialOrd,
TaskInput,
TraceRawVcs,
Serialize,
Deserialize,
NonLocalValue,
OperationValue,
)]
#[serde(tag = "type", rename_all = "kebab-case")]
pub enum RouteHas {
Header {
key: RcStr,
#[serde(skip_serializing_if = "Option::is_none")]
value: Option<RcStr>,
},
Cookie {
key: RcStr,
#[serde(skip_serializing_if = "Option::is_none")]
value: Option<RcStr>,
},
Query {
key: RcStr,
#[serde(skip_serializing_if = "Option::is_none")]
value: Option<RcStr>,
},
Host {
value: RcStr,
},
}
#[derive(Clone, Debug, Default, PartialEq, Serialize, Deserialize, TraceRawVcs, NonLocalValue)]
#[serde(rename_all = "camelCase")]
pub struct HeaderValue {
pub key: RcStr,
pub value: RcStr,
}
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize, TraceRawVcs, NonLocalValue)]
#[serde(rename_all = "camelCase")]
pub struct Header {
pub source: String,
#[serde(skip_serializing_if = "Option::is_none")]
pub base_path: Option<bool>,
#[serde(skip_serializing_if = "Option::is_none")]
pub locale: Option<bool>,
pub headers: Vec<HeaderValue>,
#[serde(skip_serializing_if = "Option::is_none")]
pub has: Option<Vec<RouteHas>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub missing: Option<Vec<RouteHas>>,
}
#[derive(
Clone, Debug, PartialEq, Serialize, Deserialize, TraceRawVcs, NonLocalValue, OperationValue,
)]
#[serde(rename_all = "camelCase")]
pub enum RedirectStatus {
StatusCode(f64),
Permanent(bool),
}
#[derive(
Clone, Debug, PartialEq, Serialize, Deserialize, TraceRawVcs, NonLocalValue, OperationValue,
)]
#[serde(rename_all = "camelCase")]
pub struct Redirect {
pub source: String,
pub destination: String,
#[serde(skip_serializing_if = "Option::is_none")]
pub base_path: Option<bool>,
#[serde(skip_serializing_if = "Option::is_none")]
pub locale: Option<bool>,
#[serde(skip_serializing_if = "Option::is_none")]
pub has: Option<Vec<RouteHas>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub missing: Option<Vec<RouteHas>>,
#[serde(flatten)]
pub status: RedirectStatus,
}
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize, TraceRawVcs, NonLocalValue)]
#[serde(rename_all = "camelCase")]
pub struct Rewrite {
pub source: String,
pub destination: String,
#[serde(skip_serializing_if = "Option::is_none")]
pub base_path: Option<bool>,
#[serde(skip_serializing_if = "Option::is_none")]
pub locale: Option<bool>,
#[serde(skip_serializing_if = "Option::is_none")]
pub has: Option<Vec<RouteHas>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub missing: Option<Vec<RouteHas>>,
}
#[turbo_tasks::value(eq = "manual")]
#[derive(Clone, Debug, Default, PartialEq)]
#[serde(rename_all = "camelCase")]
pub struct Rewrites {
pub before_files: Vec<Rewrite>,
pub after_files: Vec<Rewrite>,
pub fallback: Vec<Rewrite>,
}
#[derive(
Clone,
Debug,
Default,
PartialEq,
Serialize,
Deserialize,
TraceRawVcs,
NonLocalValue,
OperationValue,
)]
#[serde(rename_all = "camelCase")]
pub struct TypeScriptConfig {
pub ignore_build_errors: Option<bool>,
pub tsconfig_path: Option<String>,
}
#[turbo_tasks::value(eq = "manual", operation)]
#[derive(Clone, Debug, PartialEq)]
#[serde(rename_all = "camelCase")]
pub struct ImageConfig {
pub device_sizes: Vec<u16>,
pub image_sizes: Vec<u16>,
pub path: String,
pub loader: ImageLoader,
#[serde(deserialize_with = "empty_string_is_none")]
pub loader_file: Option<String>,
pub domains: Vec<String>,
pub disable_static_images: bool,
#[serde(rename = "minimumCacheTTL")]
pub minimum_cache_ttl: u64,
pub formats: Vec<ImageFormat>,
#[serde(rename = "dangerouslyAllowSVG")]
pub dangerously_allow_svg: bool,
pub content_security_policy: String,
pub remote_patterns: Vec<RemotePattern>,
pub unoptimized: bool,
}
fn empty_string_is_none<'de, D>(deserializer: D) -> Result<Option<String>, D::Error>
where
D: Deserializer<'de>,
{
let o = Option::<String>::deserialize(deserializer)?;
Ok(o.filter(|s| !s.is_empty()))
}
impl Default for ImageConfig {
fn default() -> Self {
// https://github.com/vercel/next.js/blob/327634eb/packages/next/shared/lib/image-config.ts#L100-L114
Self {
device_sizes: vec![640, 750, 828, 1080, 1200, 1920, 2048, 3840],
image_sizes: vec![16, 32, 48, 64, 96, 128, 256, 384],
path: "/_next/image".to_string(),
loader: ImageLoader::Default,
loader_file: None,
domains: vec![],
disable_static_images: false,
minimum_cache_ttl: 60,
formats: vec![ImageFormat::Webp],
dangerously_allow_svg: false,
content_security_policy: "".to_string(),
remote_patterns: vec![],
unoptimized: false,
}
}
}
#[derive(
Clone, Debug, PartialEq, Serialize, Deserialize, TraceRawVcs, NonLocalValue, OperationValue,
)]
#[serde(rename_all = "kebab-case")]
pub enum ImageLoader {
Default,
Imgix,
Cloudinary,
Akamai,
Custom,
}
#[derive(
Clone, Debug, PartialEq, Serialize, Deserialize, TraceRawVcs, NonLocalValue, OperationValue,
)]
pub enum ImageFormat {
#[serde(rename = "image/webp")]
Webp,
#[serde(rename = "image/avif")]
Avif,
}
#[derive(
Clone,
Debug,
Default,
PartialEq,
Serialize,
Deserialize,
TraceRawVcs,
NonLocalValue,
OperationValue,
)]
#[serde(rename_all = "camelCase")]
pub struct RemotePattern {
pub hostname: String,
#[serde(skip_serializing_if = "Option::is_none")]
pub protocol: Option<RemotePatternProtocol>,
#[serde(skip_serializing_if = "Option::is_none")]
pub port: Option<String>,
#[serde(skip_serializing_if = "Option::is_none")]
pub pathname: Option<String>,
}
#[derive(
Clone, Debug, PartialEq, Serialize, Deserialize, TraceRawVcs, NonLocalValue, OperationValue,
)]
#[serde(rename_all = "kebab-case")]
pub enum RemotePatternProtocol {
Http,
Https,
}
#[derive(
Clone,
Debug,
Default,
PartialEq,
Serialize,
Deserialize,
TraceRawVcs,
NonLocalValue,
OperationValue,
)]
#[serde(rename_all = "camelCase")]
pub struct TurbopackConfig {
/// This option has been replaced by `rules`.
pub loaders: Option<JsonValue>,
pub rules: Option<FxIndexMap<RcStr, RuleConfigItemOrShortcut>>,
#[turbo_tasks(trace_ignore)]
pub conditions: Option<FxIndexMap<RcStr, ConfigConditionItem>>,
pub resolve_alias: Option<FxIndexMap<RcStr, JsonValue>>,
pub resolve_extensions: Option<Vec<RcStr>>,
pub module_ids: Option<ModuleIds>,
}
#[derive(Serialize, Deserialize, Clone, PartialEq, Eq, Debug)]
pub struct RegexComponents {
source: RcStr,
flags: RcStr,
}
#[derive(Clone, PartialEq, Eq, Debug, Serialize, Deserialize)]
#[serde(tag = "type", content = "value", rename_all = "camelCase")]
pub enum ConfigConditionPath {
Glob(RcStr),
Regex(RegexComponents),
}
impl TryInto<ConditionPath> for ConfigConditionPath {
fn try_into(self) -> Result<ConditionPath> {
Ok(match self {
ConfigConditionPath::Glob(path) => ConditionPath::Glob(path),
ConfigConditionPath::Regex(path) => {
ConditionPath::Regex(EsRegex::new(&path.source, &path.flags)?.resolved_cell())
}
})
}
type Error = anyhow::Error;
}
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq)]
pub struct ConfigConditionItem {
pub path: ConfigConditionPath,
}
impl TryInto<ConditionItem> for ConfigConditionItem {
fn try_into(self) -> Result<ConditionItem> {
Ok(ConditionItem {
path: self.path.try_into()?,
})
}
type Error = anyhow::Error;
}
#[derive(
Clone, Debug, PartialEq, Eq, Serialize, Deserialize, TraceRawVcs, NonLocalValue, OperationValue,
)]
#[serde(rename_all = "camelCase")]
pub struct RuleConfigItemOptions {
pub loaders: Vec<LoaderItem>,
#[serde(default, alias = "as")]
pub rename_as: Option<RcStr>,
}
#[derive(
Clone, Debug, PartialEq, Eq, Serialize, Deserialize, TraceRawVcs, NonLocalValue, OperationValue,
)]
#[serde(rename_all = "camelCase", untagged)]
pub enum RuleConfigItemOrShortcut {
Loaders(Vec<LoaderItem>),
Advanced(RuleConfigItem),
}
#[derive(
Clone, Debug, PartialEq, Eq, Serialize, Deserialize, TraceRawVcs, NonLocalValue, OperationValue,
)]
#[serde(rename_all = "camelCase", untagged)]
pub enum RuleConfigItem {
Options(RuleConfigItemOptions),
Conditional(FxIndexMap<RcStr, RuleConfigItem>),
Boolean(bool),
}
#[derive(
Clone, Debug, PartialEq, Eq, Serialize, Deserialize, TraceRawVcs, NonLocalValue, OperationValue,
)]
#[serde(untagged)]
pub enum LoaderItem {
LoaderName(RcStr),
LoaderOptions(WebpackLoaderItem),
}
#[turbo_tasks::value(operation)]
#[derive(Copy, Clone, Debug)]
#[serde(rename_all = "camelCase")]
pub enum ModuleIds {
Named,
Deterministic,
}
#[turbo_tasks::value(transparent)]
pub struct OptionModuleIds(pub Option<ModuleIds>);
#[derive(
Clone, Debug, PartialEq, Serialize, Deserialize, TraceRawVcs, NonLocalValue, OperationValue,
)]
#[serde(untagged)]
pub enum MdxRsOptions {
Boolean(bool),
Option(MdxTransformOptions),
}
#[turbo_tasks::value(shared, operation)]
#[derive(Clone, Debug)]
#[serde(rename_all = "camelCase")]
pub enum ReactCompilerMode {
Infer,
Annotation,
All,
}
/// Subset of react compiler options
#[turbo_tasks::value(shared, operation)]
#[derive(Clone, Debug)]
#[serde(rename_all = "camelCase")]
pub struct ReactCompilerOptions {
#[serde(skip_serializing_if = "Option::is_none")]
pub compilation_mode: Option<ReactCompilerMode>,
#[serde(skip_serializing_if = "Option::is_none")]
pub panic_threshold: Option<RcStr>,
}
#[derive(
Clone, Debug, PartialEq, Serialize, Deserialize, TraceRawVcs, NonLocalValue, OperationValue,
)]
#[serde(untagged)]
pub enum ReactCompilerOptionsOrBoolean {
Boolean(bool),
Option(ReactCompilerOptions),
}
#[turbo_tasks::value(transparent)]
pub struct OptionalReactCompilerOptions(Option<ResolvedVc<ReactCompilerOptions>>);
#[derive(
Clone,
Debug,
Default,
PartialEq,
Serialize,
Deserialize,
TraceRawVcs,
ValueDebugFormat,
NonLocalValue,
OperationValue,
)]
#[serde(rename_all = "camelCase")]
pub struct ExperimentalConfig {
// all fields should be private and access should be wrapped within a turbo-tasks function
// Otherwise changing ExperimentalConfig will lead to invalidating all tasks accessing it.
allowed_revalidate_header_keys: Option<Vec<RcStr>>,
client_router_filter: Option<bool>,
/// decimal for percent for possible false positives e.g. 0.01 for 10%
/// potential false matches lower percent increases size of the filter
client_router_filter_allowed_rate: Option<f64>,
client_router_filter_redirects: Option<bool>,
fetch_cache_key_prefix: Option<RcStr>,
isr_flush_to_disk: Option<bool>,
/// For use with `@next/mdx`. Compile MDX files using the new Rust compiler.
/// @see [api reference](https://nextjs.org/docs/app/api-reference/next-config-js/mdxRs)
mdx_rs: Option<MdxRsOptions>,
strict_next_head: Option<bool>,
swc_plugins: Option<Vec<(RcStr, serde_json::Value)>>,
external_middleware_rewrites_resolve: Option<bool>,
scroll_restoration: Option<bool>,
manual_client_base_path: Option<bool>,
optimistic_client_cache: Option<bool>,
middleware_prefetch: Option<MiddlewarePrefetchType>,
/// optimizeCss can be boolean or critters' option object
/// Use Record<string, unknown> as critters doesn't export its Option type ([link](https://github.com/GoogleChromeLabs/critters/blob/a590c05f9197b656d2aeaae9369df2483c26b072/packages/critters/src/index.d.ts))
optimize_css: Option<serde_json::Value>,
next_script_workers: Option<bool>,
web_vitals_attribution: Option<Vec<RcStr>>,
server_actions: Option<ServerActionsOrLegacyBool>,
sri: Option<SubResourceIntegrity>,
react_compiler: Option<ReactCompilerOptionsOrBoolean>,
cache_components: Option<bool>,
use_cache: Option<bool>,
// ---
// UNSUPPORTED
// ---
adjust_font_fallbacks: Option<bool>,
adjust_font_fallbacks_with_size_adjust: Option<bool>,
after: Option<bool>,
amp: Option<serde_json::Value>,
app_document_preloading: Option<bool>,
cache_handlers: Option<FxIndexMap<RcStr, RcStr>>,
cache_life: Option<FxIndexMap<String, CacheLifeProfile>>,
case_sensitive_routes: Option<bool>,
cpus: Option<f64>,
cra_compat: Option<bool>,
disable_optimized_loading: Option<bool>,
disable_postcss_preset_env: Option<bool>,
esm_externals: Option<EsmExternals>,
extension_alias: Option<serde_json::Value>,
external_dir: Option<bool>,
/// If set to `false`, webpack won't fall back to polyfill Node.js modules
/// in the browser Full list of old polyfills is accessible here:
/// [webpack/webpack#Module_notound_error.js#L13-L42](https://github.com/webpack/webpack/blob/2a0536cf510768111a3a6dceeb14cb79b9f59273/lib/Module_not_found_error.js#L13-L42)
fallback_node_polyfills: Option<bool>, // false
force_swc_transforms: Option<bool>,
fully_specified: Option<bool>,
gzip_size: Option<bool>,
pub inline_css: Option<bool>,
instrumentation_hook: Option<bool>,
client_trace_metadata: Option<Vec<String>>,
large_page_data_bytes: Option<f64>,
logging: Option<serde_json::Value>,
memory_based_workers_count: Option<bool>,
/// Optimize React APIs for server builds.
optimize_server_react: Option<bool>,
/// Automatically apply the "modularize_imports" optimization to imports of
/// the specified packages.
optimize_package_imports: Option<Vec<RcStr>>,
/// Using this feature will enable the `react@experimental` for the `app`
/// directory.
ppr: Option<ExperimentalPartialPrerendering>,
taint: Option<bool>,
#[serde(rename = "routerBFCache")]
router_bfcache: Option<bool>,
proxy_timeout: Option<f64>,
/// enables the minification of server code.
server_minification: Option<bool>,
/// Enables source maps generation for the server production bundle.
server_source_maps: Option<bool>,
swc_trace_profiling: Option<bool>,
/// @internal Used by the Next.js internals only.
trust_host_header: Option<bool>,
/// Generate Route types and enable type checking for Link and Router.push,
/// etc. This option requires `appDir` to be enabled first.
/// @see [api reference](https://nextjs.org/docs/app/api-reference/next-config-js/typedRoutes)
typed_routes: Option<bool>,
url_imports: Option<serde_json::Value>,
view_transition: Option<bool>,
/// This option is to enable running the Webpack build in a worker thread
/// (doesn't apply to Turbopack).
webpack_build_worker: Option<bool>,
worker_threads: Option<bool>,
turbopack_minify: Option<bool>,
turbopack_persistent_caching: Option<bool>,
turbopack_source_maps: Option<bool>,
turbopack_tree_shaking: Option<bool>,
turbopack_scope_hoisting: Option<bool>,
turbopack_use_system_tls_certs: Option<bool>,
// Whether to enable the global-not-found convention
global_not_found: Option<bool>,
/// Defaults to false in development mode, true in production mode.
turbopack_remove_unused_exports: Option<bool>,
/// Devtool option for the segment explorer.
devtool_segment_explorer: Option<bool>,
}
#[derive(
Clone, Debug, PartialEq, Serialize, Deserialize, TraceRawVcs, NonLocalValue, OperationValue,
)]
#[serde(rename_all = "camelCase")]
pub struct CacheLifeProfile {
#[serde(skip_serializing_if = "Option::is_none")]
pub stale: Option<u32>,
#[serde(skip_serializing_if = "Option::is_none")]
pub revalidate: Option<u32>,
#[serde(skip_serializing_if = "Option::is_none")]
pub expire: Option<u32>,
}
#[test]
fn test_cache_life_profiles() {
let json = serde_json::json!({
"cacheLife": {
"frequent": {
"stale": 19,
"revalidate": 100,
},
}
});
let config: ExperimentalConfig = serde_json::from_value(json).unwrap();
let mut expected_cache_life = FxIndexMap::default();
expected_cache_life.insert(
"frequent".to_string(),
CacheLifeProfile {
stale: Some(19),
revalidate: Some(100),
expire: None,
},
);
assert_eq!(config.cache_life, Some(expected_cache_life));
}
#[test]
fn test_cache_life_profiles_invalid() {
let json = serde_json::json!({
"cacheLife": {
"invalid": {
"stale": "invalid_value",
},
}
});
let result: Result<ExperimentalConfig, _> = serde_json::from_value(json);
assert!(
result.is_err(),
"Deserialization should fail due to invalid 'stale' value type"
);
}
#[derive(
Clone, Debug, PartialEq, Serialize, Deserialize, TraceRawVcs, NonLocalValue, OperationValue,
)]
#[serde(rename_all = "lowercase")]
pub enum ExperimentalPartialPrerenderingIncrementalValue {
Incremental,
}
#[derive(
Clone, Debug, PartialEq, Deserialize, Serialize, TraceRawVcs, NonLocalValue, OperationValue,
)]
#[serde(untagged)]
pub enum ExperimentalPartialPrerendering {
Boolean(bool),
Incremental(ExperimentalPartialPrerenderingIncrementalValue),
}
#[test]
fn test_parse_experimental_partial_prerendering() {
let json = serde_json::json!({
"ppr": "incremental"
});
let config: ExperimentalConfig = serde_json::from_value(json).unwrap();
assert_eq!(
config.ppr,
Some(ExperimentalPartialPrerendering::Incremental(
ExperimentalPartialPrerenderingIncrementalValue::Incremental
))
);
let json = serde_json::json!({
"ppr": true
});
let config: ExperimentalConfig = serde_json::from_value(json).unwrap();
assert_eq!(
config.ppr,
Some(ExperimentalPartialPrerendering::Boolean(true))
);
// Expect if we provide a random string, it will fail.
let json = serde_json::json!({
"ppr": "random"
});
let config = serde_json::from_value::<ExperimentalConfig>(json);
assert!(config.is_err());
}
#[derive(
Clone, Debug, PartialEq, Eq, Serialize, Deserialize, TraceRawVcs, NonLocalValue, OperationValue,
)]
#[serde(rename_all = "camelCase")]
pub struct SubResourceIntegrity {
pub algorithm: Option<RcStr>,
}
#[derive(
Clone, Debug, PartialEq, Deserialize, Serialize, TraceRawVcs, NonLocalValue, OperationValue,
)]
#[serde(untagged)]
pub enum ServerActionsOrLegacyBool {
/// The current way to configure server actions sub behaviors.
ServerActionsConfig(ServerActions),
/// The legacy way to disable server actions. This is no longer used, server
/// actions is always enabled.
LegacyBool(bool),
}
#[derive(
Clone, Debug, PartialEq, Deserialize, Serialize, TraceRawVcs, NonLocalValue, OperationValue,
)]
#[serde(rename_all = "kebab-case")]
pub enum EsmExternalsValue {
Loose,
}
#[derive(
Clone, Debug, PartialEq, Deserialize, Serialize, TraceRawVcs, NonLocalValue, OperationValue,
)]
#[serde(untagged)]
pub enum EsmExternals {
Loose(EsmExternalsValue),
Bool(bool),
}
// Test for esm externals deserialization.
#[test]
fn test_esm_externals_deserialization() {
let json = serde_json::json!({
"esmExternals": true
});
let config: ExperimentalConfig = serde_json::from_value(json).unwrap();
assert_eq!(config.esm_externals, Some(EsmExternals::Bool(true)));
let json = serde_json::json!({
"esmExternals": "loose"
});
let config: ExperimentalConfig = serde_json::from_value(json).unwrap();
assert_eq!(
config.esm_externals,
Some(EsmExternals::Loose(EsmExternalsValue::Loose))
);
}
#[derive(
Clone,
Debug,
Default,
PartialEq,
Eq,
Deserialize,
Serialize,
TraceRawVcs,
NonLocalValue,
OperationValue,
)]
#[serde(rename_all = "camelCase")]
pub struct ServerActions {
/// Allows adjusting body parser size limit for server actions.
pub body_size_limit: Option<SizeLimit>,
}
#[derive(Clone, Debug, Serialize, Deserialize, TraceRawVcs, NonLocalValue, OperationValue)]
#[serde(untagged)]
pub enum SizeLimit {
Number(f64),
WithUnit(String),
}
// Manual implementation of PartialEq and Eq for SizeLimit because f64 doesn't
// implement Eq.
impl PartialEq for SizeLimit {
fn eq(&self, other: &Self) -> bool {
match (self, other) {
(SizeLimit::Number(a), SizeLimit::Number(b)) => a.to_bits() == b.to_bits(),
(SizeLimit::WithUnit(a), SizeLimit::WithUnit(b)) => a == b,
_ => false,
}
}
}
impl Eq for SizeLimit {}
#[derive(
Clone, Debug, PartialEq, Serialize, Deserialize, TraceRawVcs, NonLocalValue, OperationValue,
)]
#[serde(rename_all = "kebab-case")]
pub enum MiddlewarePrefetchType {
Strict,
Flexible,
}
#[derive(
Clone, Debug, PartialEq, Serialize, Deserialize, TraceRawVcs, NonLocalValue, OperationValue,
)]
#[serde(untagged)]
pub enum EmotionTransformOptionsOrBoolean {
Boolean(bool),
Options(EmotionTransformConfig),
}
impl EmotionTransformOptionsOrBoolean {
pub fn is_enabled(&self) -> bool {
match self {
Self::Boolean(enabled) => *enabled,
_ => true,
}
}
}
#[derive(
Clone, Debug, PartialEq, Serialize, Deserialize, TraceRawVcs, NonLocalValue, OperationValue,
)]
#[serde(untagged)]
pub enum StyledComponentsTransformOptionsOrBoolean {
Boolean(bool),
Options(StyledComponentsTransformConfig),
}
impl StyledComponentsTransformOptionsOrBoolean {
pub fn is_enabled(&self) -> bool {
match self {
Self::Boolean(enabled) => *enabled,
_ => true,
}
}
}
#[turbo_tasks::value(eq = "manual")]
#[derive(Clone, Debug, PartialEq, Default, OperationValue)]
#[serde(rename_all = "camelCase")]
pub struct CompilerConfig {
pub react_remove_properties: Option<ReactRemoveProperties>,
pub relay: Option<RelayConfig>,
pub emotion: Option<EmotionTransformOptionsOrBoolean>,
pub remove_console: Option<RemoveConsoleConfig>,
pub styled_components: Option<StyledComponentsTransformOptionsOrBoolean>,
}
#[derive(
Clone, Debug, PartialEq, Serialize, Deserialize, TraceRawVcs, NonLocalValue, OperationValue,
)]
#[serde(untagged, rename_all = "camelCase")]
pub enum ReactRemoveProperties {
Boolean(bool),
Config { properties: Option<Vec<String>> },
}
impl ReactRemoveProperties {
pub fn is_enabled(&self) -> bool {
match self {
Self::Boolean(enabled) => *enabled,
_ => true,
}
}
}
#[derive(
Clone, Debug, PartialEq, Serialize, Deserialize, TraceRawVcs, NonLocalValue, OperationValue,
)]
#[serde(untagged)]
pub enum RemoveConsoleConfig {
Boolean(bool),
Config { exclude: Option<Vec<String>> },
}
impl RemoveConsoleConfig {
pub fn is_enabled(&self) -> bool {
match self {
Self::Boolean(enabled) => *enabled,
_ => true,
}
}
}
#[turbo_tasks::value(transparent)]
pub struct ResolveExtensions(Option<Vec<RcStr>>);
#[turbo_tasks::value(transparent)]
pub struct SwcPlugins(Vec<(RcStr, serde_json::Value)>);
#[turbo_tasks::value(transparent)]
pub struct OptionalMdxTransformOptions(Option<ResolvedVc<MdxTransformOptions>>);
#[turbo_tasks::value(transparent)]
pub struct OptionSubResourceIntegrity(Option<SubResourceIntegrity>);
#[turbo_tasks::value(transparent)]
pub struct OptionServerActions(Option<ServerActions>);
#[turbo_tasks::value(transparent)]
pub struct OptionJsonValue(pub Option<serde_json::Value>);
#[turbo_tasks::value(shared)]
struct InvalidLoaderRuleError {
ext: RcStr,
rename_as: Option<RcStr>,
config_file_path: FileSystemPath,
}
#[turbo_tasks::value_impl]
impl Issue for InvalidLoaderRuleError {
#[turbo_tasks::function]
async fn file_path(self: turbo_tasks::Vc<Self>) -> Result<Vc<FileSystemPath>> {
Ok(self.await?.config_file_path.clone().cell())
}
#[turbo_tasks::function]
fn stage(self: turbo_tasks::Vc<Self>) -> Vc<IssueStage> {
IssueStage::Config.cell()
}
#[turbo_tasks::function]
async fn title(self: turbo_tasks::Vc<Self>) -> Result<Vc<StyledString>> {
Ok(StyledString::Text(
format!(
"Invalid loader rule for extension: {}",
self.await?.ext.as_str()
)
.into(),
)
.cell())
}
#[turbo_tasks::function]
async fn description(self: turbo_tasks::Vc<Self>) -> Result<Vc<OptionStyledString>> {
Ok(Vc::cell(Some(StyledString::Stack(vec![
StyledString::Text(
format!(
"The extension {} contains a wildcard, but the `as` option does not: {}",
self.await?.ext.as_str(),
self.await?
.rename_as
.as_ref()
.map(|r| r.as_str())
.unwrap_or("")
)
.into(),
),
StyledString::Text(
"Check out the documentation here for more information:".into(),
),
StyledString::Text(
"https://nextjs.org/docs/app/api-reference/config/next-config-js/turbopack#configuring-webpack-loaders".into(),
),
]).resolved_cell())))
}
}
#[turbo_tasks::value_impl]
impl NextConfig {
#[turbo_tasks::function]
pub async fn from_string(string: Vc<RcStr>) -> Result<Vc<Self>> {
let string = string.await?;
let mut jdeserializer = serde_json::Deserializer::from_str(&string);
let config: NextConfig = serde_path_to_error::deserialize(&mut jdeserializer)
.with_context(|| format!("failed to parse next.config.js: {string}"))?;
Ok(config.cell())
}
#[turbo_tasks::function]
pub fn bundle_pages_router_dependencies(&self) -> Vc<bool> {
Vc::cell(self.bundle_pages_router_dependencies.unwrap_or_default())
}
#[turbo_tasks::function]
pub fn enable_react_production_profiling(&self) -> Vc<bool> {
Vc::cell(self.react_production_profiling.unwrap_or_default())
}
#[turbo_tasks::function]
pub fn server_external_packages(&self) -> Vc<Vec<RcStr>> {
Vc::cell(
self.server_external_packages
.as_ref()
.cloned()
.unwrap_or_default(),
)
}
#[turbo_tasks::function]
pub fn is_standalone(&self) -> Vc<bool> {
Vc::cell(self.output == Some(OutputType::Standalone))
}
#[turbo_tasks::function]
pub fn cache_handler(&self) -> Vc<Option<RcStr>> {
Vc::cell(self.cache_handler.clone())
}
#[turbo_tasks::function]
pub fn compiler(&self) -> Vc<CompilerConfig> {
self.compiler.clone().unwrap_or_default().cell()
}
#[turbo_tasks::function]
pub fn env(&self) -> Vc<EnvMap> {
// The value expected for env is Record<String, String>, but config itself
// allows arbitrary object (https://github.com/vercel/next.js/blob/25ba8a74b7544dfb6b30d1b67c47b9cb5360cb4e/packages/next/src/server/config-schema.ts#L203)
// then stringifies it. We do the interop here as well.
let env = self
.env
.iter()
.map(|(k, v)| {
(
k.as_str().into(),
if let JsonValue::String(s) = v {
// A string value is kept, calling `to_string` would wrap in to quotes.
s.as_str().into()
} else {
v.to_string().into()
},
)
})
.collect();
Vc::cell(env)
}
#[turbo_tasks::function]
pub fn image_config(&self) -> Vc<ImageConfig> {
self.images.clone().cell()
}
#[turbo_tasks::function]
pub fn page_extensions(&self) -> Vc<Vec<RcStr>> {
Vc::cell(self.page_extensions.clone())
}
#[turbo_tasks::function]
pub fn is_global_not_found_enabled(&self) -> Vc<bool> {
Vc::cell(self.experimental.global_not_found.unwrap_or_default())
}
#[turbo_tasks::function]
pub fn transpile_packages(&self) -> Vc<Vec<RcStr>> {
Vc::cell(self.transpile_packages.clone().unwrap_or_default())
}
#[turbo_tasks::function]
pub async fn webpack_rules(
&self,
active_conditions: Vec<RcStr>,
project_path: FileSystemPath,
) -> Result<Vc<OptionWebpackRules>> {
let Some(turbo_rules) = self.turbopack.as_ref().and_then(|t| t.rules.as_ref()) else {
return Ok(Vc::cell(None));
};
if turbo_rules.is_empty() {
return Ok(Vc::cell(None));
}
let active_conditions = active_conditions.into_iter().collect::<FxHashSet<_>>();
let mut rules = FxIndexMap::default();
for (ext, rule) in turbo_rules.iter() {
fn transform_loaders(loaders: &[LoaderItem]) -> ResolvedVc<WebpackLoaderItems> {
ResolvedVc::cell(
loaders
.iter()
.map(|item| match item {
LoaderItem::LoaderName(name) => WebpackLoaderItem {
loader: name.clone(),
options: Default::default(),
},
LoaderItem::LoaderOptions(options) => options.clone(),
})
.collect(),
)
}
enum FindRuleResult<'a> {
Found(&'a RuleConfigItemOptions),
NotFound,
Break,
}
fn find_rule<'a>(
rule: &'a RuleConfigItem,
active_conditions: &FxHashSet<RcStr>,
) -> FindRuleResult<'a> {
match rule {
RuleConfigItem::Options(rule) => FindRuleResult::Found(rule),
RuleConfigItem::Conditional(map) => {
for (condition, rule) in map.iter() {
if condition == "default" || active_conditions.contains(condition) {
match find_rule(rule, active_conditions) {
FindRuleResult::Found(rule) => {
return FindRuleResult::Found(rule);
}
FindRuleResult::Break => {
return FindRuleResult::Break;
}
FindRuleResult::NotFound => {}
}
}
}
FindRuleResult::NotFound
}
RuleConfigItem::Boolean(_) => FindRuleResult::Break,
}
}
match rule {
RuleConfigItemOrShortcut::Loaders(loaders) => {
rules.insert(
ext.clone(),
LoaderRuleItem {
loaders: transform_loaders(loaders),
rename_as: None,
},
);
}
RuleConfigItemOrShortcut::Advanced(rule) => {
if let FindRuleResult::Found(RuleConfigItemOptions { loaders, rename_as }) =
find_rule(rule, &active_conditions)
{
// If the extension contains a wildcard, and the rename_as does not,
// emit an issue to prevent users from encountering duplicate module names.
if ext.contains("*") && rename_as.as_ref().is_some_and(|r| !r.contains("*"))
{
let config_file_path =
project_path.join(&format!("./{}", self.config_file_name))?;
InvalidLoaderRuleError {
ext: ext.clone(),
config_file_path,
rename_as: rename_as.clone(),
}
.resolved_cell()
.emit();
}
rules.insert(
ext.clone(),
LoaderRuleItem {
loaders: transform_loaders(loaders),
rename_as: rename_as.clone(),
},
);
}
}
}
}
Ok(Vc::cell(Some(ResolvedVc::cell(rules))))
}
#[turbo_tasks::function]
pub fn webpack_conditions(&self) -> Result<Vc<OptionWebpackConditions>> {
let Some(config_conditions) = self.turbopack.as_ref().and_then(|t| t.conditions.as_ref())
else {
return Ok(Vc::cell(None));
};
let conditions = config_conditions
.iter()
.map(|(k, v)| {
let item: Result<ConditionItem> = TryInto::<ConditionItem>::try_into((*v).clone());
item.map(|item| (k.clone(), item))
})
.collect::<Result<FxIndexMap<RcStr, ConditionItem>>>()?;
Ok(Vc::cell(Some(ResolvedVc::cell(conditions))))
}
#[turbo_tasks::function]
pub fn persistent_caching_enabled(&self) -> Result<Vc<bool>> {
Ok(Vc::cell(
self.experimental
.turbopack_persistent_caching
.unwrap_or_default(),
))
}
#[turbo_tasks::function]
pub fn resolve_alias_options(&self) -> Result<Vc<ResolveAliasMap>> {
let Some(resolve_alias) = self
.turbopack
.as_ref()
.and_then(|t| t.resolve_alias.as_ref())
else {
return Ok(ResolveAliasMap::cell(ResolveAliasMap::default()));
};
let alias_map: ResolveAliasMap = resolve_alias.try_into()?;
Ok(alias_map.cell())
}
#[turbo_tasks::function]
pub fn resolve_extension(&self) -> Vc<ResolveExtensions> {
let Some(resolve_extensions) = self
.turbopack
.as_ref()
.and_then(|t| t.resolve_extensions.as_ref())
else {
return Vc::cell(None);
};
Vc::cell(Some(resolve_extensions.clone()))
}
#[turbo_tasks::function]
pub fn import_externals(&self) -> Result<Vc<bool>> {
Ok(Vc::cell(match self.experimental.esm_externals {
Some(EsmExternals::Bool(b)) => b,
Some(EsmExternals::Loose(_)) => bail!("esmExternals = \"loose\" is not supported"),
None => true,
}))
}
#[turbo_tasks::function]
pub fn mdx_rs(&self) -> Vc<OptionalMdxTransformOptions> {
let options = &self.experimental.mdx_rs;
let options = match options {
Some(MdxRsOptions::Boolean(true)) => OptionalMdxTransformOptions(Some(
MdxTransformOptions {
provider_import_source: Some(mdx_import_source_file()),
..Default::default()
}
.resolved_cell(),
)),
Some(MdxRsOptions::Option(options)) => OptionalMdxTransformOptions(Some(
MdxTransformOptions {
provider_import_source: Some(
options
.provider_import_source
.clone()
.unwrap_or(mdx_import_source_file()),
),
..options.clone()
}
.resolved_cell(),
)),
_ => OptionalMdxTransformOptions(None),
};
options.cell()
}
#[turbo_tasks::function]
pub fn modularize_imports(&self) -> Vc<ModularizeImports> {
Vc::cell(self.modularize_imports.clone().unwrap_or_default())
}
#[turbo_tasks::function]
pub fn experimental_swc_plugins(&self) -> Vc<SwcPlugins> {
Vc::cell(self.experimental.swc_plugins.clone().unwrap_or_default())
}
#[turbo_tasks::function]
pub fn experimental_sri(&self) -> Vc<OptionSubResourceIntegrity> {
Vc::cell(self.experimental.sri.clone())
}
#[turbo_tasks::function]
pub fn experimental_server_actions(&self) -> Vc<OptionServerActions> {
Vc::cell(match self.experimental.server_actions.as_ref() {
Some(ServerActionsOrLegacyBool::ServerActionsConfig(server_actions)) => {
Some(server_actions.clone())
}
Some(ServerActionsOrLegacyBool::LegacyBool(true)) => Some(ServerActions::default()),
_ => None,
})
}
#[turbo_tasks::function]
pub fn react_compiler(&self) -> Vc<OptionalReactCompilerOptions> {
let options = &self.experimental.react_compiler;
let options = match options {
Some(ReactCompilerOptionsOrBoolean::Boolean(true)) => {
OptionalReactCompilerOptions(Some(
ReactCompilerOptions {
compilation_mode: None,
panic_threshold: None,
}
.resolved_cell(),
))
}
Some(ReactCompilerOptionsOrBoolean::Option(options)) => OptionalReactCompilerOptions(
Some(ReactCompilerOptions { ..options.clone() }.resolved_cell()),
),
_ => OptionalReactCompilerOptions(None),
};
options.cell()
}
#[turbo_tasks::function]
pub fn sass_config(&self) -> Vc<JsonValue> {
Vc::cell(self.sass_options.clone().unwrap_or_default())
}
#[turbo_tasks::function]
pub fn skip_middleware_url_normalize(&self) -> Vc<bool> {
Vc::cell(self.skip_middleware_url_normalize.unwrap_or(false))
}
#[turbo_tasks::function]
pub fn skip_trailing_slash_redirect(&self) -> Vc<bool> {
Vc::cell(self.skip_trailing_slash_redirect.unwrap_or(false))
}
/// Returns the final asset prefix. If an assetPrefix is set, it's used.
/// Otherwise, the basePath is used.
#[turbo_tasks::function]
pub async fn computed_asset_prefix(self: Vc<Self>) -> Result<Vc<Option<RcStr>>> {
let this = self.await?;
Ok(Vc::cell(Some(
format!(
"{}/_next/",
if let Some(asset_prefix) = &this.asset_prefix {
asset_prefix
} else {
this.base_path.as_ref().map_or("", |b| b.as_str())
}
.trim_end_matches('/')
)
.into(),
)))
}
/// Returns the suffix to use for chunk loading.
#[turbo_tasks::function]
pub async fn chunk_suffix_path(self: Vc<Self>) -> Result<Vc<Option<RcStr>>> {
let this = self.await?;
match &this.deployment_id {
Some(deployment_id) => Ok(Vc::cell(Some(format!("?dpl={deployment_id}").into()))),
None => Ok(Vc::cell(None)),
}
}
#[turbo_tasks::function]
pub fn enable_ppr(&self) -> Vc<bool> {
Vc::cell(
self.experimental
.ppr
.as_ref()
.map(|ppr| match ppr {
ExperimentalPartialPrerendering::Incremental(
ExperimentalPartialPrerenderingIncrementalValue::Incremental,
) => true,
ExperimentalPartialPrerendering::Boolean(b) => *b,
})
.unwrap_or(false),
)
}
#[turbo_tasks::function]
pub fn enable_taint(&self) -> Vc<bool> {
Vc::cell(self.experimental.taint.unwrap_or(false))
}
#[turbo_tasks::function]
pub fn enable_router_bfcache(&self) -> Vc<bool> {
Vc::cell(self.experimental.router_bfcache.unwrap_or(false))
}
#[turbo_tasks::function]
pub fn enable_view_transition(&self) -> Vc<bool> {
Vc::cell(self.experimental.view_transition.unwrap_or(false))
}
#[turbo_tasks::function]
pub fn enable_cache_components(&self) -> Vc<bool> {
Vc::cell(self.experimental.cache_components.unwrap_or(false))
}
#[turbo_tasks::function]
pub fn enable_use_cache(&self) -> Vc<bool> {
Vc::cell(
self.experimental
.use_cache
// "use cache" was originally implicitly enabled with the
// cacheComponents flag, so we transfer the value for cacheComponents to the
// explicit useCache flag to ensure backwards compatibility.
.unwrap_or(self.experimental.cache_components.unwrap_or(false)),
)
}
#[turbo_tasks::function]
pub fn cache_kinds(&self) -> Vc<CacheKinds> {
let mut cache_kinds = CacheKinds::default();
if let Some(handlers) = self.experimental.cache_handlers.as_ref() {
cache_kinds.extend(handlers.keys().cloned());
}
cache_kinds.cell()
}
#[turbo_tasks::function]
pub fn optimize_package_imports(&self) -> Vc<Vec<RcStr>> {
Vc::cell(
self.experimental
.optimize_package_imports
.clone()
.unwrap_or_default(),
)
}
#[turbo_tasks::function]
pub fn tree_shaking_mode_for_foreign_code(
&self,
_is_development: bool,
) -> Vc<OptionTreeShaking> {
OptionTreeShaking(match self.experimental.turbopack_tree_shaking {
Some(false) => Some(TreeShakingMode::ReexportsOnly),
Some(true) => Some(TreeShakingMode::ModuleFragments),
None => Some(TreeShakingMode::ReexportsOnly),
})
.cell()
}
#[turbo_tasks::function]
pub fn tree_shaking_mode_for_user_code(&self, _is_development: bool) -> Vc<OptionTreeShaking> {
OptionTreeShaking(match self.experimental.turbopack_tree_shaking {
Some(false) => Some(TreeShakingMode::ReexportsOnly),
Some(true) => Some(TreeShakingMode::ModuleFragments),
None => Some(TreeShakingMode::ReexportsOnly),
})
.cell()
}
#[turbo_tasks::function]
pub async fn turbopack_remove_unused_exports(&self, mode: Vc<NextMode>) -> Result<Vc<bool>> {
Ok(Vc::cell(
self.experimental
.turbopack_remove_unused_exports
.unwrap_or(matches!(*mode.await?, NextMode::Build)),
))
}
#[turbo_tasks::function]
pub async fn module_ids(&self, mode: Vc<NextMode>) -> Result<Vc<ModuleIds>> {
Ok(match *mode.await? {
// Ignore configuration in development mode, HMR only works with `named`
NextMode::Development => ModuleIds::Named.cell(),
NextMode::Build => self
.turbopack
.as_ref()
.and_then(|t| t.module_ids)
.unwrap_or(ModuleIds::Deterministic)
.cell(),
})
}
#[turbo_tasks::function]
pub async fn turbo_minify(&self, mode: Vc<NextMode>) -> Result<Vc<bool>> {
let minify = self.experimental.turbopack_minify;
Ok(Vc::cell(
minify.unwrap_or(matches!(*mode.await?, NextMode::Build)),
))
}
#[turbo_tasks::function]
pub async fn turbo_scope_hoisting(&self, mode: Vc<NextMode>) -> Result<Vc<bool>> {
Ok(Vc::cell(match *mode.await? {
// Ignore configuration in development mode to not break HMR
NextMode::Development => false,
NextMode::Build => self.experimental.turbopack_scope_hoisting.unwrap_or(true),
}))
}
#[turbo_tasks::function]
pub fn client_source_maps(&self, _mode: Vc<NextMode>) -> Result<Vc<bool>> {
// Temporarily always enable client source maps as tests regress.
// TODO: Respect both `self.experimental.turbopack_source_maps` and
// `self.production_browser_source_maps`
let source_maps = self.experimental.turbopack_source_maps;
Ok(Vc::cell(source_maps.unwrap_or(true)))
}
#[turbo_tasks::function]
pub fn server_source_maps(&self) -> Result<Vc<bool>> {
let source_maps = self.experimental.turbopack_source_maps;
Ok(Vc::cell(source_maps.unwrap_or(true)))
}
#[turbo_tasks::function]
pub fn typescript_tsconfig_path(&self) -> Result<Vc<Option<RcStr>>> {
Ok(Vc::cell(
self.typescript
.tsconfig_path
.as_ref()
.map(|path| path.to_owned().into()),
))
}
#[turbo_tasks::function]
pub fn output_file_tracing_includes(&self) -> Vc<OptionJsonValue> {
Vc::cell(self.output_file_tracing_includes.clone())
}
#[turbo_tasks::function]
pub fn output_file_tracing_excludes(&self) -> Vc<OptionJsonValue> {
Vc::cell(self.output_file_tracing_excludes.clone())
}
#[turbo_tasks::function]
pub async fn fetch_client(&self, env: Vc<Box<dyn ProcessEnv>>) -> Result<Vc<FetchClient>> {
// Support both an env var and the experimental flag to provide more flexibility to
// developers on locked down systems, depending on if they want to configure this on a
// per-system or per-project basis.
let use_system_tls_certs = env
.read(rcstr!("NEXT_TURBOPACK_EXPERIMENTAL_USE_SYSTEM_TLS_CERTS"))
.await?
.as_ref()
.and_then(|env_value| {
// treat empty value same as an unset value
(!env_value.is_empty()).then(|| env_value == "1" || env_value == "true")
})
.or(self.experimental.turbopack_use_system_tls_certs)
.unwrap_or(false);
Ok(FetchClient {
tls_built_in_webpki_certs: !use_system_tls_certs,
tls_built_in_native_certs: use_system_tls_certs,
}
.cell())
}
}
/// A subset of ts/jsconfig that next.js implicitly
/// interops with.
#[turbo_tasks::value(serialization = "custom", eq = "manual")]
#[derive(Clone, Debug, Default, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct JsConfig {
compiler_options: Option<serde_json::Value>,
}
#[turbo_tasks::value_impl]
impl JsConfig {
#[turbo_tasks::function]
pub async fn from_string(string: Vc<RcStr>) -> Result<Vc<Self>> {
let string = string.await?;
let config: JsConfig = serde_json::from_str(&string)
.with_context(|| format!("failed to parse next.config.js: {string}"))?;
Ok(config.cell())
}
#[turbo_tasks::function]
pub fn compiler_options(&self) -> Vc<serde_json::Value> {
Vc::cell(self.compiler_options.clone().unwrap_or_default())
}
}
|