mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-08-09 17:52:32 +08: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"
|
||
|
}
|
||
|
}
|