feat: adding git ignore/webpack tutorial

This commit is contained in:
Smigz 2023-12-17 20:41:35 -05:00
parent 1fcb68f4e4
commit 5e71ed17da
12 changed files with 4453 additions and 0 deletions

View file

@ -0,0 +1,10 @@
const { merge } = require('webpack-merge');
const common = require('./webpack.common.js');
module.exports = merge(common, {
mode: 'development',
devtool: 'inline-source-map',
devServer: {
static: './dist',
},
});