const View = new BrowserWindow({
      width,
      height,
      minWidth,
      minHeight,
      maxWidth,
      maxHeight,
      show: true,
      // 隐藏默认菜单
      autoHideMenuBar: true,
      webPreferences: {
        enableRemoteModule: true,
        nodeIntegration: true,
        contextIsolation: false,
        // 禁用同源策略,允许跨域
        webSecurity: false
      }
    });

    if (isDev) {
      View.loadURL(`http://localhost:3000/#/file_preview`);
    } else {
      View.loadFile("dist/index.html", {
        hash: "/file_preview"
      });
    }

博主开发了一个浏览器aweb123.com

Logo

前往低代码交流专区

更多推荐