@@ -3,7 +3,6 @@ import { logger } from "@/utils/logger.js";
33import { measureTime } from "@/utils/time-perf.js" ;
44import fse from "fs-extra" ;
55import kleur from "kleur" ;
6- import crypto from "node:crypto" ;
76import { join } from "pathe" ;
87import { Fragment , h } from "preact" ;
98import { renderToStringAsync } from "preact-render-to-string" ;
@@ -148,7 +147,6 @@ path: ${final_path}`);
148147 css : [ css_output . entry , css_output [ final_path ] || "" ] . filter ( Boolean ) ,
149148 static_generated_routes : [ ] ,
150149 absolute_module_path : module_path ,
151- server_data_api_key : "" ,
152150 } ) ;
153151
154152 for ( const static_path of static_paths_result . paths ) {
@@ -199,7 +197,6 @@ params returned by getStaticPaths: ${JSON.stringify(static_path.params)}`);
199197 module : pages_relative_path ,
200198 props : statics_fn_result . props ,
201199 rendering_kind : isStatic ? "static" : "server-side" ,
202- server_data_api_key : crypto . randomUUID ( ) ,
203200 revalidate : statics_fn_result . revalidate || - 1 ,
204201 static_generated_routes : [ ] ,
205202 is_dynamic : isUrlDynamic ,
@@ -219,7 +216,6 @@ params returned by getStaticPaths: ${JSON.stringify(static_path.params)}`);
219216 css : r . css ,
220217 is_dynamic : r . is_dynamic ,
221218 path_parsed_for_routing : filePathToRoutingPath ( r . path ) ,
222- server_data_api_url : `/_internal_/${ r . server_data_api_key } ` ,
223219 static_generated_routes : r . static_generated_routes . map ( ( r ) => {
224220 return {
225221 path : r . path ,
0 commit comments