We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f1bd04 commit 97e5390Copy full SHA for 97e5390
src/build/patches.ts
@@ -135,7 +135,7 @@ export async function readInputKDL(fileUrl: URL): Promise<any> {
135
* Read, parse, and merge all KDL files under the input folder.
136
*/
137
export default async function readKDL(file: string): Promise<any> {
138
- const inputFolder = new URL("../inputfiles/patches/", import.meta.url);
+ const inputFolder = new URL("../../inputfiles/patches/", import.meta.url);
139
const fileUrls = await getAllKDLFileURLs(inputFolder, file);
140
141
const parsedContents = await Promise.all(fileUrls.map(readInputKDL));
0 commit comments