Skip to content

Instantly share code, notes, and snippets.

View adarshbhat's full-sized avatar

Adarsh Bhat adarshbhat

  • San Francisco, CA
View GitHub Profile
@adarshbhat
adarshbhat / webpack.config.js
Last active October 14, 2020 21:34
Webpack configuration
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
module.exports = {
mode: 'development',
entry: {
app: './src/index.js'
},
output: {