main.js 377 B

12345678910111213141516171819
  1. const { app, BrowserWindow, Menu } = require('electron')
  2. const createWindow = () => {
  3. Menu.setApplicationMenu(null)
  4. const win = new BrowserWindow({
  5. center: true,
  6. minWidth: 1280,
  7. minHeight: 800,
  8. icon: 'dist/favicon.ico'
  9. })
  10. win.maximize()
  11. win.loadFile('dist/index.html')
  12. }
  13. app.whenReady().then(() => {
  14. createWindow()
  15. })