first commit

This commit is contained in:
2025-08-11 23:49:58 +08:00
commit 0b8fb61130
38 changed files with 20122 additions and 0 deletions

12
webpack.test.config.js Normal file
View File

@@ -0,0 +1,12 @@
const path = require("path");
module.exports = {
mode: "development",
watch: true,
watchOptions: {
poll: 1000, // 每秒询问多少次
aggregateTimeout: 200, //防抖 多少毫秒后再次触发
},
entry: path.resolve(__dirname, "Pandora.js"),
output: { filename: "Pandora.min.js" },
};