mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-29 11:02:28 +08:00
19 lines
500 B
JavaScript
19 lines
500 B
JavaScript
const path = require("path");
|
|
const webpack = require("webpack");
|
|
|
|
module.exports = {
|
|
mode: "production",
|
|
entry: "../../node_modules/@mermaid-js/layout-elk/dist/mermaid-layout-elk.esm.min.mjs",
|
|
output: {
|
|
library: "MERMAID_ELK",
|
|
filename: "elk.min.js",
|
|
path: path.resolve(__dirname),
|
|
libraryTarget: "umd",
|
|
libraryExport: "default"
|
|
},
|
|
plugins: [
|
|
new webpack.optimize.LimitChunkCountPlugin({
|
|
maxChunks: 1
|
|
})
|
|
]
|
|
} |