mirror of
https://github.com/jaywcjlove/wxmp.git
synced 2026-01-12 08:18:49 +08:00
feat: add electron app.
This commit is contained in:
15
electron/app/main.js
Normal file
15
electron/app/main.js
Normal file
@@ -0,0 +1,15 @@
|
||||
const path = require('path');
|
||||
const { App } = require('@wcj/wxmp-main');
|
||||
|
||||
(async () => {
|
||||
const options = {};
|
||||
if (process.env.NODE_ENV === 'development') {
|
||||
options.preload = require.resolve('@wcj/wxmp-preload');
|
||||
options.webpath = require.resolve('website/build/index.html');
|
||||
} else {
|
||||
options.preload = path.resolve(__dirname, 'website/index.js');
|
||||
options.webpath = 'website/index.html';
|
||||
}
|
||||
const app = new App();
|
||||
await app.createWindow(options);
|
||||
})();
|
||||
Reference in New Issue
Block a user