Skip to content

Commit 6335929

Browse files
committed
Don't think main subfolder was ever used as an output target; this was preventing benchmark test from running
1 parent 7fa60c0 commit 6335929

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

packages/rrweb/test/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export const startServer = (defaultPort = 3030) =>
6060

6161
let pathname = path.join(__dirname, sanitizePath);
6262
if (/^\/rrweb.*\.c?js.*/.test(sanitizePath)) {
63-
pathname = path.join(__dirname, `../dist/main`, sanitizePath);
63+
pathname = path.join(__dirname, `../dist`, sanitizePath);
6464
}
6565

6666
try {

packages/rrweb/vite.config.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
import config from '../../vite.config.default';
22

3-
// export default config('src/index.ts', 'rrweb', { outputDir: 'dist/main' });
43
export default config('src/index.ts', 'rrweb');

0 commit comments

Comments
 (0)