webpack.config.js 91 B

123456
  1. module.exports = {
  2. entry: "./src/index.js",
  3. output: {
  4. filename: "bundle.js"
  5. }
  6. };