Skip to content

Commit 084f4b0

Browse files
Update index.js
1 parent 4450641 commit 084f4b0

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/main/index.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,9 @@ const { createConfig } = require("../config");
99
let buildConfig = {};
1010
try {
1111
buildConfig = require("./build-config");
12-
console.log('[MAIN] Successfully loaded build config:', JSON.stringify(buildConfig, null, 2));
1312
} catch (error) {
1413
// build-config.js doesn't exist, use empty config (development mode)
1514
buildConfig = {};
16-
console.log('[MAIN] Build config file not found, using empty config (development mode)');
1715
}
1816

1917
// Helper function to create proper file URLs
@@ -33,7 +31,6 @@ const isDev = !app.isPackaged;
3331

3432
// Create configuration with proper isDev detection and build config
3533
const config = createConfig(isDev, buildConfig);
36-
console.log('[MAIN] Created config with isDev:', isDev, 'buildConfig:', JSON.stringify(buildConfig, null, 2));
3734

3835
let rendererPath, preloadPath;
3936
if(isDev) {

0 commit comments

Comments
 (0)