mirror of
https://github.com/zadam/trilium.git
synced 2025-11-02 12:39:04 +01:00
12 lines
261 B
JavaScript
12 lines
261 B
JavaScript
const path = require("path");
|
|
|
|
module.exports = {
|
|
mode: "production",
|
|
entry: "./main.js",
|
|
output: {
|
|
library: "MERMAID_ELK",
|
|
path: path.resolve(__dirname, "dist"),
|
|
libraryTarget: "umd",
|
|
libraryExport: "default"
|
|
}
|
|
} |