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 2242f50 commit d2bb7faCopy full SHA for d2bb7fa
scripts/compare-builds/web.mjs
@@ -1,8 +1,9 @@
1
import { stat, readdir } from 'node:fs/promises';
2
import path from 'node:path';
3
+import { fileURLToPath } from 'node:url';
4
-const BASE = import.meta.resolve(`../../out/base`);
5
-const HEAD = import.meta.resolve(`../../out/head`);
+const BASE = fileURLToPath(import.meta.resolve(`../../out/base`));
6
+const HEAD = fileURLToPath(import.meta.resolve(`../../out/head`));
7
8
/**
9
* Formats bytes into human-readable format
0 commit comments