const { LOGIN_WINDOW_URL } = require("../constant") const { createWindow } = require('./lib/common') const create = () => { const win = createWindow(LOGIN_WINDOW_URL, { width: 500, height: 400, alwaysOnTop: true, // modal: true, // parent: event.sender, minimizable: false, fullscreenable: false, maximizable: false, resizable: false, focusable: true }) return win } module.exports = { create }