2024-11-25 21:10:27 +02:00
|
|
|
const path = require("path");
|
2024-11-25 21:16:39 +02:00
|
|
|
const webpack = require("webpack");
|
2024-11-25 21:10:27 +02:00
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
mode: "production",
|
2024-11-25 23:24:26 +02:00
|
|
|
entry: "../../node_modules/@mermaid-js/layout-elk/dist/mermaid-layout-elk.esm.min.mjs",
|
2024-11-25 21:10:27 +02:00
|
|
|
output: {
|
|
|
|
library: "MERMAID_ELK",
|
2024-11-25 21:16:39 +02:00
|
|
|
filename: "elk.min.js",
|
|
|
|
path: path.resolve(__dirname),
|
2024-11-25 21:10:27 +02:00
|
|
|
libraryTarget: "umd",
|
|
|
|
libraryExport: "default"
|
2024-11-25 21:16:39 +02:00
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
new webpack.optimize.LimitChunkCountPlugin({
|
|
|
|
maxChunks: 1
|
|
|
|
})
|
|
|
|
]
|
2024-11-25 21:10:27 +02:00
|
|
|
}
|