Files
Pandora/webpack.config.js
2025-08-11 23:49:58 +08:00

12 lines
235 B
JavaScript

const path = require("path");
module.exports = {
mode: "none",
entry: path.resolve(__dirname, "Pandora.js"),
output: {
path: path.resolve(__dirname, ""),
filename: "./Pandora.min.js",
},
// devtool: "source-map",
};