* Move plugins folder from electron to root folder * Add CICD for plugins * Fix error electron import plugin after change plugin name * Add remove app cache on CI test pipeline --------- Co-authored-by: Hien To <>
16 lines
476 B
JavaScript
16 lines
476 B
JavaScript
const path = require("path");
|
|
|
|
module.exports = {
|
|
experiments: { outputModule: true },
|
|
entry: "./index.js", // Adjust the entry point to match your project's main file
|
|
output: {
|
|
filename: "bundle.js", // Adjust the output file name as needed
|
|
path: path.resolve(__dirname, "dist"),
|
|
library: { type: "module" }, // Specify ESM output format
|
|
},
|
|
resolve: {
|
|
extensions: [".js"],
|
|
},
|
|
// Add loaders and other configuration as needed for your project
|
|
};
|