Skip to content

Instantly share code, notes, and snippets.

@Chett23
Chett23 / webpack.common.js
Created February 21, 2020 16:27
Webpack common
const path = require("path");
const HtmlWebpackPlugin = require("html-webpack-plugin");
module.exports = {
devtool: "inline-source-map",
output: {
path: path.resolve("dist", "assets"),
filename: "bundle.js"
},
performance: { hints: false },
@Chett23
Chett23 / .ES6 Katas
Last active October 1, 2019 00:24
ES6 Katas
This gist is to save my work on the ES6 Katas.