mermaid/tests/webpack/webpack.config.js
2022-11-04 11:29:24 +05:30

10 lines
165 B
JavaScript

const path = require('path');
module.exports = {
entry: './src/index.js',
output: {
filename: 'main.js',
path: path.resolve(__dirname, 'dist'),
},
};