2025-07-02 20:10:54 +08:00
|
|
|
"use strict";
|
|
|
|
|
2023-06-30 08:25:02 +08:00
|
|
|
const path = require("path");
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
output: {
|
|
|
|
path: path.join(__dirname, "dist"),
|
|
|
|
filename: "output.js"
|
|
|
|
},
|
2023-07-30 09:09:09 +08:00
|
|
|
stats: "none"
|
2023-06-30 08:25:02 +08:00
|
|
|
};
|