mirror of
https://github.com/novnc/noVNC.git
synced 2026-06-05 11:59:39 +00:00
11 lines
200 B
JavaScript
11 lines
200 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = {
|
|
entry: './index.js',
|
|
output: {
|
|
path: path.resolve(__dirname, 'dist'),
|
|
filename: 'index.js',
|
|
},
|
|
mode: 'development'
|
|
};
|