electron app that can connect/disconnect

This commit is contained in:
2022-04-18 13:24:27 +02:00
parent e52ef237af
commit 8e10db0736
33 changed files with 20168 additions and 859 deletions

View File

@@ -0,0 +1,14 @@
module.exports = {
/**
* This is the main entry point for your application, it's the first file
* that runs in the main process.
*/
entry: "./src/index.ts",
// Put your normal webpack config below here
module: {
rules: require("./webpack.rules"),
},
resolve: {
extensions: [".js", ".ts", ".jsx", ".tsx", ".css", ".json"],
},
};