Files
forgetmenot-django/frontend/webpack.config.js
2021-04-07 21:23:21 -05:00

10 lines
167 B
JavaScript

const path = require("path");
module.exports = {
entry: "./src/index.js",
output: {
filename: "bundle.js",
path: path.resolve(__dirname, "dist"),
},
};