Skip to content

Commit

Permalink
fix(e2e): remove dirname when calculating distDir
Browse files Browse the repository at this point in the history
  • Loading branch information
danielroe committed Dec 5, 2024
1 parent 0528455 commit 56122b7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions dirs.js
Original file line number Diff line number Diff line change
@@ -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))

0 comments on commit 56122b7

Please sign in to comment.