noVNC/core/wasm/webpack.config.js

11 lines
208 B
JavaScript

const path = require('path');
module.exports = {
entry: './bootstrap.js',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'bootstrap.js',
},
mode: 'development'
};