vite-plugin-smart-prefetch 0.3.7 → 0.3.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +88 -288
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +88 -288
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -775,7 +775,15 @@ var MarkovChainTrainer = class {
|
|
|
775
775
|
};
|
|
776
776
|
|
|
777
777
|
// src/plugin/config-generator.ts
|
|
778
|
-
var
|
|
778
|
+
var ConfigGenerator = class {
|
|
779
|
+
/**
|
|
780
|
+
* NOTE: Hardcoded route/component mappings have been REMOVED to make the plugin generic.
|
|
781
|
+
* The plugin now uses dynamic strategies (direct match, pattern match, fuzzy match)
|
|
782
|
+
* to discover routes from the Vite manifest and actual file structure.
|
|
783
|
+
*
|
|
784
|
+
* This allows the plugin to work with ANY project structure without project-specific
|
|
785
|
+
* configuration hardcoded in the plugin code.
|
|
786
|
+
*/
|
|
779
787
|
constructor(manifest, manualRules = {}, debug = false, vite) {
|
|
780
788
|
this.vite = null;
|
|
781
789
|
this.isDev = false;
|
|
@@ -964,224 +972,69 @@ var _ConfigGenerator = class _ConfigGenerator {
|
|
|
964
972
|
return merged;
|
|
965
973
|
}
|
|
966
974
|
/**
|
|
967
|
-
*
|
|
968
|
-
*
|
|
969
|
-
*
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
return null;
|
|
979
|
-
}
|
|
980
|
-
const chunkName = _ConfigGenerator.COMPONENT_TO_CHUNK_NAME[componentName];
|
|
981
|
-
if (!chunkName) {
|
|
982
|
-
if (this.debug) {
|
|
983
|
-
console.log(` \u274C Component ${componentName} not in COMPONENT_TO_CHUNK_NAME mapping`);
|
|
984
|
-
}
|
|
985
|
-
return null;
|
|
986
|
-
}
|
|
987
|
-
const chunkEntry = Object.entries(this.manifest).find(
|
|
988
|
-
([key, entry]) => entry.name === chunkName || key.includes(chunkName)
|
|
989
|
-
);
|
|
990
|
-
if (!chunkEntry) {
|
|
991
|
-
if (this.debug) {
|
|
992
|
-
console.log(` \u274C Chunk name ${chunkName} not found in manifest`);
|
|
993
|
-
}
|
|
994
|
-
return null;
|
|
995
|
-
}
|
|
996
|
-
const chunkFile = chunkEntry[1].file;
|
|
997
|
-
if (this.debug) {
|
|
998
|
-
console.log(
|
|
999
|
-
` \u2705 Via-Name Strategy: ${route} \u2192 ${componentName} \u2192 ${chunkName} \u2192 ${chunkFile}`
|
|
1000
|
-
);
|
|
1001
|
-
}
|
|
1002
|
-
return chunkFile;
|
|
1003
|
-
}
|
|
1004
|
-
/**
|
|
1005
|
-
* Map route to chunk file using Vite manifest
|
|
1006
|
-
* Tries multiple strategies to find the correct chunk
|
|
975
|
+
* Map BigQuery route to Vite manifest chunk file
|
|
976
|
+
*
|
|
977
|
+
* The routes come from BigQuery navigation data (e.g., /purchase-order, /dispatch-order/:id)
|
|
978
|
+
* We match them directly to manifest entries without trying to discover routes.
|
|
979
|
+
*
|
|
980
|
+
* Strategy: Match route segments against manifest file paths, ignoring hash suffixes
|
|
981
|
+
* Example:
|
|
982
|
+
* Route: /purchase-order/:id
|
|
983
|
+
* Normalized: /purchase-order
|
|
984
|
+
* Manifest: src/pages/purchase-order/index.tsx → {file: assets/purchase-order-abc123.js}
|
|
985
|
+
* Match: YES → return assets/purchase-order-abc123.js
|
|
1007
986
|
*/
|
|
1008
987
|
routeToChunk(route) {
|
|
1009
|
-
const viaName = this.routeToChunkViaName(route);
|
|
1010
|
-
if (viaName) {
|
|
1011
|
-
return viaName;
|
|
1012
|
-
}
|
|
1013
|
-
const directMatch = this.findDirectMatch(route);
|
|
1014
|
-
if (directMatch) {
|
|
1015
|
-
return directMatch;
|
|
1016
|
-
}
|
|
1017
|
-
const patternMatch = this.findPatternMatch(route);
|
|
1018
|
-
if (patternMatch) {
|
|
1019
|
-
return patternMatch;
|
|
1020
|
-
}
|
|
1021
|
-
const fuzzyMatch = this.findFuzzyMatch(route);
|
|
1022
|
-
if (fuzzyMatch) {
|
|
1023
|
-
return fuzzyMatch;
|
|
1024
|
-
}
|
|
1025
|
-
return null;
|
|
1026
|
-
}
|
|
1027
|
-
/**
|
|
1028
|
-
* Strategy 1: Direct path match
|
|
1029
|
-
*/
|
|
1030
|
-
findDirectMatch(route) {
|
|
1031
988
|
const normalizedRoute = route.replace(/\/[:$]\w+/g, "");
|
|
1032
|
-
const cleanRoutePath = normalizedRoute.replace(/^\//, "");
|
|
1033
989
|
const routeSegments = normalizedRoute.split("/").filter(Boolean);
|
|
1034
|
-
|
|
1035
|
-
const
|
|
1036
|
-
|
|
1037
|
-
}).join("/");
|
|
1038
|
-
let singleSegmentPascal = null;
|
|
1039
|
-
if (routeSegments.length === 1) {
|
|
1040
|
-
const segment = routeSegments[0];
|
|
1041
|
-
const words = segment.split("-");
|
|
1042
|
-
singleSegmentPascal = words.map((w) => w.charAt(0).toUpperCase() + w.slice(1).toLowerCase()).join("");
|
|
1043
|
-
}
|
|
1044
|
-
const patterns = [
|
|
1045
|
-
// HIGHEST PRIORITY: Exact page component name matches
|
|
1046
|
-
singleSegmentPascal ? `src/pages/${singleSegmentPascal}.tsx` : null,
|
|
1047
|
-
singleSegmentPascal ? `src/pages/${singleSegmentPascal}.ts` : null,
|
|
1048
|
-
singleSegmentPascal ? `src/pages/${singleSegmentPascal}.jsx` : null,
|
|
1049
|
-
singleSegmentPascal ? `src/pages/${singleSegmentPascal}.js` : null,
|
|
1050
|
-
// For multi-segment routes with hyphens
|
|
1051
|
-
`src/pages/${pascalCaseComponent}.tsx`,
|
|
1052
|
-
`src/pages/${pascalCaseComponent}.ts`,
|
|
1053
|
-
`src/pages/${pascalCaseComponent}.jsx`,
|
|
1054
|
-
`src/pages/${pascalCaseComponent}.js`,
|
|
1055
|
-
// Features folder
|
|
1056
|
-
`src/features${normalizedRoute}/index.ts`,
|
|
1057
|
-
`src/features${normalizedRoute}/index.tsx`,
|
|
1058
|
-
`src/features${normalizedRoute}/index.js`,
|
|
1059
|
-
`src/features${normalizedRoute}/index.jsx`,
|
|
1060
|
-
// Pages folder - try both directory and file formats
|
|
1061
|
-
`src/pages${normalizedRoute}/index.tsx`,
|
|
1062
|
-
`src/pages${normalizedRoute}/index.ts`,
|
|
1063
|
-
`src/pages${normalizedRoute}/index.jsx`,
|
|
1064
|
-
`src/pages${normalizedRoute}/index.js`,
|
|
1065
|
-
`src/pages${normalizedRoute}.tsx`,
|
|
1066
|
-
`src/pages${normalizedRoute}.ts`,
|
|
1067
|
-
`src/pages${normalizedRoute}.jsx`,
|
|
1068
|
-
`src/pages${normalizedRoute}.js`,
|
|
1069
|
-
// Fallback to old capitalize method (single capital letter)
|
|
1070
|
-
`src/pages/${this.capitalize(cleanRoutePath)}.tsx`,
|
|
1071
|
-
`src/pages/${this.capitalize(cleanRoutePath)}.ts`,
|
|
1072
|
-
// Full paths with app prefix
|
|
1073
|
-
`apps/farmart-pro/src/features${normalizedRoute}/index.ts`,
|
|
1074
|
-
`apps/farmart-pro/src/features${normalizedRoute}/index.tsx`,
|
|
1075
|
-
`apps/farmart-pro/src/pages${normalizedRoute}/index.tsx`
|
|
1076
|
-
].filter(Boolean);
|
|
1077
|
-
for (let i = 0; i < patterns.length; i++) {
|
|
1078
|
-
const pattern = patterns[i];
|
|
1079
|
-
if (!pattern) continue;
|
|
1080
|
-
const entry = this.manifest[pattern];
|
|
1081
|
-
if (entry) {
|
|
1082
|
-
return entry.file;
|
|
1083
|
-
}
|
|
1084
|
-
}
|
|
1085
|
-
return null;
|
|
1086
|
-
}
|
|
1087
|
-
/**
|
|
1088
|
-
* Capitalize first letter of string
|
|
1089
|
-
*/
|
|
1090
|
-
capitalize(str) {
|
|
1091
|
-
return str.charAt(0).toUpperCase() + str.slice(1);
|
|
1092
|
-
}
|
|
1093
|
-
/**
|
|
1094
|
-
* Strategy 2: Pattern matching with wildcards
|
|
1095
|
-
*/
|
|
1096
|
-
findPatternMatch(route) {
|
|
1097
|
-
const routeSegments = route.split("/").filter(Boolean);
|
|
1098
|
-
if (routeSegments.length === 0) return null;
|
|
1099
|
-
const candidates = Object.entries(this.manifest).filter(([path2]) => {
|
|
1100
|
-
const pathSegments = path2.split("/").filter(Boolean);
|
|
1101
|
-
return routeSegments.every(
|
|
1102
|
-
(segment) => pathSegments.some(
|
|
1103
|
-
(ps) => ps.toLowerCase().includes(segment.replace(/[:$]\w+/, "").toLowerCase())
|
|
1104
|
-
)
|
|
990
|
+
if (routeSegments.length === 0) {
|
|
991
|
+
const candidates2 = Object.entries(this.manifest).filter(
|
|
992
|
+
([path2]) => path2 === "src/pages/index.tsx" || path2 === "src/app.tsx" || path2 === "src/App.tsx" || path2 === "src/main.tsx"
|
|
1105
993
|
);
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
if (!pathA.includes("/pages/") && pathB.includes("/pages/")) return 1;
|
|
1109
|
-
const aIsEntry = pathA.includes("index.tsx") || pathA.includes("index.ts");
|
|
1110
|
-
const bIsEntry = pathB.includes("index.tsx") || pathB.includes("index.ts");
|
|
1111
|
-
if (aIsEntry && !bIsEntry) return -1;
|
|
1112
|
-
if (!aIsEntry && bIsEntry) return 1;
|
|
1113
|
-
if (pathA.includes(".tsx") && !pathB.includes(".tsx")) return -1;
|
|
1114
|
-
if (!pathA.includes(".tsx") && pathB.includes(".tsx")) return 1;
|
|
1115
|
-
return 0;
|
|
1116
|
-
});
|
|
1117
|
-
if (candidates.length > 0) {
|
|
1118
|
-
if (this.debug) {
|
|
1119
|
-
console.log(` \u2705 Pattern match found: ${candidates[0][0]} \u2192 ${candidates[0][1].file}`);
|
|
1120
|
-
}
|
|
1121
|
-
return candidates[0][1].file;
|
|
1122
|
-
}
|
|
1123
|
-
if (this.debug) {
|
|
1124
|
-
console.log(` No pattern match found`);
|
|
1125
|
-
}
|
|
1126
|
-
return null;
|
|
1127
|
-
}
|
|
1128
|
-
/**
|
|
1129
|
-
* Strategy 3: Fuzzy matching
|
|
1130
|
-
* Converts route to camelCase/PascalCase and searches
|
|
1131
|
-
*/
|
|
1132
|
-
findFuzzyMatch(route) {
|
|
1133
|
-
const cleanRoute = route.replace(/\/[:$]\w+/g, "");
|
|
1134
|
-
const routeSegments = cleanRoute.split("/").filter(Boolean);
|
|
1135
|
-
const pascalCase = routeSegments.map((segment) => {
|
|
1136
|
-
const words = segment.split("-");
|
|
1137
|
-
return words.map((word) => word.charAt(0).toUpperCase() + word.slice(1).toLowerCase()).join("");
|
|
1138
|
-
}).join("");
|
|
1139
|
-
const camelCase = pascalCase.charAt(0).toLowerCase() + pascalCase.slice(1);
|
|
1140
|
-
if (this.debug) {
|
|
1141
|
-
console.log(` Fuzzy match - Route: ${route}`);
|
|
1142
|
-
console.log(` Trying PascalCase: ${pascalCase}, camelCase: ${camelCase}`);
|
|
994
|
+
if (candidates2.length > 0) return candidates2[0][1].file;
|
|
995
|
+
return null;
|
|
1143
996
|
}
|
|
1144
|
-
const candidates = Object.entries(this.manifest).filter(([path2
|
|
1145
|
-
if (path2.startsWith("
|
|
997
|
+
const candidates = Object.entries(this.manifest).filter(([path2]) => {
|
|
998
|
+
if (path2.startsWith("node_modules") || path2.startsWith("_")) {
|
|
1146
999
|
return false;
|
|
1147
1000
|
}
|
|
1148
|
-
const
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
return true;
|
|
1152
|
-
}
|
|
1153
|
-
if (fileName.includes(pascalCase) || fileName.includes(camelCase)) {
|
|
1154
|
-
return true;
|
|
1155
|
-
}
|
|
1156
|
-
const pathSegments = path2.toLowerCase().split("/");
|
|
1157
|
-
const lowerPascal = pascalCase.toLowerCase();
|
|
1158
|
-
const lowerCamel = camelCase.toLowerCase();
|
|
1159
|
-
return pathSegments.some(
|
|
1160
|
-
(seg) => seg.includes(lowerPascal) || seg.includes(lowerCamel)
|
|
1001
|
+
const pathLower = path2.toLowerCase();
|
|
1002
|
+
return routeSegments.every(
|
|
1003
|
+
(segment) => pathLower.includes(segment.toLowerCase())
|
|
1161
1004
|
);
|
|
1162
|
-
}).sort(([pathA
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
if (
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
if (
|
|
1169
|
-
if (
|
|
1170
|
-
if (
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1005
|
+
}).sort(([pathA], [pathB]) => {
|
|
1006
|
+
let scoreA = 0;
|
|
1007
|
+
let scoreB = 0;
|
|
1008
|
+
if (pathA.includes("/pages/")) scoreA += 10;
|
|
1009
|
+
if (pathB.includes("/pages/")) scoreB += 10;
|
|
1010
|
+
if (pathA.includes("index.tsx")) scoreA += 8;
|
|
1011
|
+
if (pathB.includes("index.tsx")) scoreB += 8;
|
|
1012
|
+
if (pathA.includes("index.ts")) scoreA += 7;
|
|
1013
|
+
if (pathB.includes("index.ts")) scoreB += 7;
|
|
1014
|
+
const pathASegments = pathA.split("/").map((s) => s.toLowerCase()).filter((s) => s && !s.startsWith("."));
|
|
1015
|
+
const pathBSegments = pathB.split("/").map((s) => s.toLowerCase()).filter((s) => s && !s.startsWith("."));
|
|
1016
|
+
const matchCountA = routeSegments.filter(
|
|
1017
|
+
(seg) => pathASegments.some((ps) => ps.includes(seg.toLowerCase()))
|
|
1018
|
+
).length;
|
|
1019
|
+
const matchCountB = routeSegments.filter(
|
|
1020
|
+
(seg) => pathBSegments.some((ps) => ps.includes(seg.toLowerCase()))
|
|
1021
|
+
).length;
|
|
1022
|
+
scoreA += matchCountA * 5;
|
|
1023
|
+
scoreB += matchCountB * 5;
|
|
1024
|
+
return scoreB - scoreA;
|
|
1175
1025
|
});
|
|
1176
1026
|
if (candidates.length > 0) {
|
|
1177
|
-
const
|
|
1027
|
+
const manifestEntry = candidates[0][1];
|
|
1178
1028
|
if (this.debug) {
|
|
1179
|
-
console.log(` \u2705
|
|
1029
|
+
console.log(` \u2705 Found chunk for route ${route}`);
|
|
1030
|
+
console.log(` Manifest: ${candidates[0][0]}`);
|
|
1031
|
+
console.log(` Chunk file: ${manifestEntry.file}`);
|
|
1180
1032
|
}
|
|
1181
|
-
return
|
|
1033
|
+
return manifestEntry.file;
|
|
1182
1034
|
}
|
|
1183
1035
|
if (this.debug) {
|
|
1184
|
-
console.log(` No
|
|
1036
|
+
console.log(` \u26A0\uFE0F No chunk found for route: ${route}`);
|
|
1037
|
+
console.log(` Searched for segments: ${routeSegments.join(", ")}`);
|
|
1185
1038
|
}
|
|
1186
1039
|
return null;
|
|
1187
1040
|
}
|
|
@@ -1299,90 +1152,6 @@ var _ConfigGenerator = class _ConfigGenerator {
|
|
|
1299
1152
|
return segmentConfigs;
|
|
1300
1153
|
}
|
|
1301
1154
|
};
|
|
1302
|
-
/**
|
|
1303
|
-
* Maps routes to their component names based on vite.config.ts chunk strategy
|
|
1304
|
-
* This is derived from the route configuration in src/routes/index.ts
|
|
1305
|
-
* Note: These are the core routes from vite.config.ts chunking strategy
|
|
1306
|
-
* Routes not listed here will fall through to fuzzy matching
|
|
1307
|
-
*/
|
|
1308
|
-
_ConfigGenerator.ROUTE_TO_COMPONENT_NAME = {
|
|
1309
|
-
"/": "Home",
|
|
1310
|
-
"/home": "Home",
|
|
1311
|
-
"/dashboard": "Dashboard",
|
|
1312
|
-
"/profile": "Profile",
|
|
1313
|
-
"/settings": "Settings",
|
|
1314
|
-
"/preferences": "Preferences",
|
|
1315
|
-
"/privacy": "Privacy",
|
|
1316
|
-
"/security": "Security",
|
|
1317
|
-
"/analytics": "Analytics",
|
|
1318
|
-
"/reports": "Reports",
|
|
1319
|
-
"/metrics": "Metrics",
|
|
1320
|
-
"/projects": "Projects",
|
|
1321
|
-
"/tasks": "Tasks",
|
|
1322
|
-
"/teams": "Teams",
|
|
1323
|
-
"/workspaces": "Workspaces",
|
|
1324
|
-
"/workflows": "Workflows",
|
|
1325
|
-
"/templates": "Templates",
|
|
1326
|
-
"/logs": "Logs",
|
|
1327
|
-
"/audit-logs": "AuditLogs",
|
|
1328
|
-
"/integrations": "Integrations",
|
|
1329
|
-
"/api-docs": "ApiDocs",
|
|
1330
|
-
"/api-documentation": "ApiDocs",
|
|
1331
|
-
// Alias for space-separated variant
|
|
1332
|
-
"/support": "Support",
|
|
1333
|
-
"/help": "Help",
|
|
1334
|
-
"/billing": "Billing",
|
|
1335
|
-
"/plans": "Plans",
|
|
1336
|
-
"/usage": "Usage",
|
|
1337
|
-
"/permissions": "Permissions",
|
|
1338
|
-
"/notifications": "Notifications"
|
|
1339
|
-
};
|
|
1340
|
-
/**
|
|
1341
|
-
* Maps component names to chunk names based on vite.config.ts manualChunks strategy
|
|
1342
|
-
* Each component is assigned to a specific chunk group for code splitting
|
|
1343
|
-
*
|
|
1344
|
-
* Note: Core components (Home, Dashboard) are not in manual chunks - they're part of main bundle
|
|
1345
|
-
* For these, we return the main bundle file path 'js/index-*.js' which will be resolved from manifest
|
|
1346
|
-
*/
|
|
1347
|
-
_ConfigGenerator.COMPONENT_TO_CHUNK_NAME = {
|
|
1348
|
-
// Core components - loaded with main bundle (not code-split)
|
|
1349
|
-
Home: "index",
|
|
1350
|
-
// Special marker for main entry point
|
|
1351
|
-
Dashboard: "index",
|
|
1352
|
-
// User Profile & Settings chunk
|
|
1353
|
-
Profile: "chunk-user-profile",
|
|
1354
|
-
Settings: "chunk-user-profile",
|
|
1355
|
-
Preferences: "chunk-user-profile",
|
|
1356
|
-
Privacy: "chunk-user-profile",
|
|
1357
|
-
Security: "chunk-user-profile",
|
|
1358
|
-
// Analytics & Reporting chunk
|
|
1359
|
-
Analytics: "chunk-analytics",
|
|
1360
|
-
Reports: "chunk-analytics",
|
|
1361
|
-
Metrics: "chunk-analytics",
|
|
1362
|
-
// Project Management chunk
|
|
1363
|
-
Projects: "chunk-projects",
|
|
1364
|
-
Tasks: "chunk-projects",
|
|
1365
|
-
Teams: "chunk-projects",
|
|
1366
|
-
Workspaces: "chunk-projects",
|
|
1367
|
-
// Workflows & Operations chunk
|
|
1368
|
-
Workflows: "chunk-operations",
|
|
1369
|
-
Templates: "chunk-operations",
|
|
1370
|
-
Logs: "chunk-operations",
|
|
1371
|
-
AuditLogs: "chunk-operations",
|
|
1372
|
-
// Integration chunk
|
|
1373
|
-
Integrations: "chunk-integrations",
|
|
1374
|
-
ApiDocs: "chunk-integrations",
|
|
1375
|
-
Support: "chunk-integrations",
|
|
1376
|
-
Help: "chunk-integrations",
|
|
1377
|
-
// Billing & Plans chunk
|
|
1378
|
-
Billing: "chunk-billing",
|
|
1379
|
-
Plans: "chunk-billing",
|
|
1380
|
-
Usage: "chunk-billing",
|
|
1381
|
-
// Admin & Notifications chunk
|
|
1382
|
-
Permissions: "chunk-admin",
|
|
1383
|
-
Notifications: "chunk-admin"
|
|
1384
|
-
};
|
|
1385
|
-
var ConfigGenerator = _ConfigGenerator;
|
|
1386
1155
|
|
|
1387
1156
|
// src/plugin/cache-manager.ts
|
|
1388
1157
|
import * as fs from "fs";
|
|
@@ -1804,6 +1573,37 @@ function smartPrefetch(options = {}) {
|
|
|
1804
1573
|
framework: '${framework}',
|
|
1805
1574
|
debug: ${debug},
|
|
1806
1575
|
};
|
|
1576
|
+
|
|
1577
|
+
// Initialize prefetch manager after page load
|
|
1578
|
+
// This allows the app to be built first, then PrefetchManager can load the config
|
|
1579
|
+
if (document.readyState === 'loading') {
|
|
1580
|
+
document.addEventListener('DOMContentLoaded', initPrefetch);
|
|
1581
|
+
} else {
|
|
1582
|
+
initPrefetch();
|
|
1583
|
+
}
|
|
1584
|
+
|
|
1585
|
+
async function initPrefetch() {
|
|
1586
|
+
try {
|
|
1587
|
+
// Dynamically import PrefetchManager from the bundled app
|
|
1588
|
+
// The app should have @farmart/vite-plugin-smart-prefetch/runtime in its dependencies
|
|
1589
|
+
const { PrefetchManager } = await import('@farmart/vite-plugin-smart-prefetch/runtime');
|
|
1590
|
+
const manager = new PrefetchManager('${strategy}', ${debug});
|
|
1591
|
+
await manager.init();
|
|
1592
|
+
|
|
1593
|
+
// Expose manager globally for debugging
|
|
1594
|
+
window.__PREFETCH_MANAGER__ = manager;
|
|
1595
|
+
if (${debug}) {
|
|
1596
|
+
console.log('\u2705 Smart Prefetch Manager initialized');
|
|
1597
|
+
}
|
|
1598
|
+
} catch (error) {
|
|
1599
|
+
if (${debug}) {
|
|
1600
|
+
console.warn('\u26A0\uFE0F Could not initialize Smart Prefetch Manager:', error);
|
|
1601
|
+
console.log('This is expected if:');
|
|
1602
|
+
console.log('1. @farmart/vite-plugin-smart-prefetch/runtime is not installed');
|
|
1603
|
+
console.log('2. prefetch-config.json was not generated (BigQuery data fetch failed)');
|
|
1604
|
+
}
|
|
1605
|
+
}
|
|
1606
|
+
}
|
|
1807
1607
|
`,
|
|
1808
1608
|
injectTo: "head"
|
|
1809
1609
|
}
|