import path from 'node:path'


     const iconPath = path.join(__dirname, '../../build/icon.png')

     const authWindow = new BrowserWindow({
        width: 600,
        height: 600,
        icon: iconPath,
        parent: mainWindow,
        modal: false,
        show: false,
        autoHideMenuBar: true,
        webPreferences: {
          nodeIntegration: false,
          contextIsolation: true,
          sandbox: true
        }
      })

Logo

腾讯云面向开发者汇聚海量精品云计算使用和开发经验,营造开放的云计算技术生态圈。

更多推荐