mirror of
https://github.com/yume-chan/ya-webadb.git
synced 2025-10-03 17:59:50 +02:00
11 lines
205 B
JavaScript
11 lines
205 B
JavaScript
const path = require("path");
|
|
|
|
const config = {
|
|
entry: "./src/index.js",
|
|
output: {
|
|
path: path.resolve(__dirname, "dist"),
|
|
filename: "bundle.js",
|
|
},
|
|
};
|
|
|
|
module.exports = config;
|