mermaid/tests/webpack/webpack.config.js

10 lines
165 B
JavaScript
Raw Normal View History

2022-11-04 11:29:24 +05:30
const path = require('path');
module.exports = {
entry: './src/index.js',
output: {
filename: 'main.js',
path: path.resolve(__dirname, 'dist'),
},
};