Skip to content

Instantly share code, notes, and snippets.

@myogeshchavan97
Last active April 9, 2021 08:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save myogeshchavan97/8689b0622f5d08a07f1b383f259aec5a to your computer and use it in GitHub Desktop.
Save myogeshchavan97/8689b0622f5d08a07f1b383f259aec5a to your computer and use it in GitHub Desktop.
Webpack Configuration File
const path = require('path');
module.exports = {
entry: './src/app.js',
output: {
filename: 'bundle.js',
path: path.join(__dirname, 'public')
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment