Skip to content

Instantly share code, notes, and snippets.

@thanapongp
Created August 18, 2019 09:50
Show Gist options
  • Select an option

  • Save thanapongp/000366dfdaf9c7487fab6c91633d871f to your computer and use it in GitHub Desktop.

Select an option

Save thanapongp/000366dfdaf9c7487fab6c91633d871f to your computer and use it in GitHub Desktop.
initial webpack.config.js
const path = require('path');
module.exports = {
entry: './src/js/main.js',
output: {
filename: 'index.js',
path: path.resolve(__dirname, 'src', 'js')
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment