ya-webadb/libraries/fetch-scrcpy-server/examples/webpack/webpack.config.js

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;