mirror of
https://github.com/falk-werner/webfuse-js
synced 2024-10-27 20:44:08 +00:00
11 lines
206 B
JavaScript
11 lines
206 B
JavaScript
|
const path = require('path');
|
||
|
|
||
|
module.exports = {
|
||
|
mode: 'production',
|
||
|
entry: './src/index.js',
|
||
|
output: {
|
||
|
filename: 'webufse.js',
|
||
|
path: path.resolve(__dirname, './dist')
|
||
|
}
|
||
|
};
|