wowtoken.app/webpack.config.js
Emily Doherty 365be630b4 Minor QOL update
Updates include removing dependancy on Google Fonts, cleaning up build process, and pulling CSS back into it's own file
2022-11-26 01:30:24 -08:00

10 lines
195 B
JavaScript

const path = require('path');
module.exports = {
entry: './src/index.js',
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'dist'),
libraryTarget: 'window',
},
};