File tree Expand file tree Collapse file tree 3 files changed +2
-14
lines changed Expand file tree Collapse file tree 3 files changed +2
-14
lines changed Original file line number Diff line number Diff line change @@ -75,12 +75,6 @@ async function loadBuildManifest() {
75
75
async function bootstrap ( ) {
76
76
const buildManifest = await loadBuildManifest ( ) ;
77
77
78
- console . log ( "Importing config from" , buildManifest . configPath ) ;
79
- console . log (
80
- "Importing config from normalized path" ,
81
- normalizeImportPath ( buildManifest . configPath )
82
- ) ;
83
-
84
78
const { config } = await importConfig ( normalizeImportPath ( buildManifest . configPath ) ) ;
85
79
86
80
// This needs to run or the PrismaInstrumentation will throw an error
Original file line number Diff line number Diff line change 1
1
import { pathToFileURL } from "node:url" ;
2
- import { isWindows } from "std-env" ;
3
2
//@ts -ignore - Have to ignore because TSC thinks this is ESM
4
- export const sourceDir = isWindows
5
- ? pathToFileURL ( __dirname ) . toString ( )
6
- : pathToFileURL ( __dirname ) . toString ( ) ;
3
+ export const sourceDir = pathToFileURL ( __dirname ) . toString ( ) ;
Original file line number Diff line number Diff line change 1
1
import { fileURLToPath } from "node:url" ;
2
- import { isWindows } from "std-env" ;
3
2
//@ts -ignore
4
- export const sourceDir = isWindows
5
- ? fileURLToPath ( new URL ( "." , import . meta. url ) )
6
- : fileURLToPath ( new URL ( "." , import . meta. url ) ) ;
3
+ export const sourceDir = fileURLToPath ( new URL ( "." , import . meta. url ) ) ;
You can’t perform that action at this time.
0 commit comments