From 56122b7456953cf502b374117427beab1da35f1b Mon Sep 17 00:00:00 2001 From: Daniel Roe Date: Thu, 5 Dec 2024 12:22:10 +0000 Subject: [PATCH] fix(e2e): remove `dirname` when calculating `distDir` --- dirs.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dirs.js b/dirs.js index 1c4d499f3..bd1f55e61 100644 --- a/dirs.js +++ b/dirs.js @@ -1,4 +1,3 @@ import { fileURLToPath } from 'node:url' -import { dirname } from 'pathe' -export const distDir = dirname(fileURLToPath(new URL('./dist', import.meta.url))) +export const distDir = fileURLToPath(new URL('./dist', import.meta.url))