Initial example for the Fetch API

This commit is contained in:
Andrew Chin
2018-08-18 17:20:42 -04:00
parent 9c6225fd80
commit 9d7c0af08f
10 changed files with 158 additions and 0 deletions

View File

@ -0,0 +1,10 @@
const path = require('path');
module.exports = {
entry: './index.js',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'index.js',
},
mode: 'development'
};