Skip to content

Instantly share code, notes, and snippets.

@wpflames
Created February 7, 2022 09:45
Show Gist options
  • Select an option

  • Save wpflames/f31f453ad7d5a06cc2da1414bd84d839 to your computer and use it in GitHub Desktop.

Select an option

Save wpflames/f31f453ad7d5a06cc2da1414bd84d839 to your computer and use it in GitHub Desktop.
Webpack basic config
const path = require('path');
module.exports = {
entry: './src/index.js',
output: {
path: path.resolve(__dirname, 'build'),
filename: 'bundle.js'
},
mode: "development"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment