mermaid/webpack.config.js
2017-04-14 17:43:53 +08:00

16 lines
238 B
JavaScript

import path from 'path'
const config = {
target: 'web',
entry: {
mermaid: './src/mermaid.js'
},
externals: 'fs',
output: {
path: path.join(__dirname, './dist/'),
filename: '[name].js'
}
}
export default [config]