Add electron minthread

This commit is contained in:
2022-04-15 17:42:29 +08:00
parent ff88c7047e
commit 7e4fee3fe5
6 changed files with 50 additions and 10 deletions
+2 -1
View File
@@ -83,7 +83,8 @@ const Entry = () => ({
},
Electron: {
import: source("./Electron/Electron.ts")
import: source("./Electron/Electron.ts"),
dependOn: ["Service"]
},
});
+1
View File
@@ -8,6 +8,7 @@ module.exports = (env) => {
const config = {
entry: {
Service: AllEntry.Service,
Electron: AllEntry.Electron,
},