Files
RoboCommander/node_modules/webmidi/playground/testwebpack/webpack.config.js

13 lines
269 B
JavaScript
Raw Normal View History

2026-04-05 16:14:49 -04:00
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',
},
};