Files
RoboCommander/node_modules/webmidi/playground/testwebpack/webpack.config.js
2026-04-05 16:14:49 -04:00

13 lines
269 B
JavaScript

const path = require('path');
// const webpack = require('webpack');
module.exports = {
context: path.resolve(__dirname, './src'),
entry: {
app: './app.js',
},
output: {
path: path.resolve(__dirname, './dist'),
filename: '[name].bundle.js',
},
};