nix_for_rustaceans/marp.config.mjs

13 lines
263 B
JavaScript
Raw Normal View History

2024-07-11 13:49:04 +02:00
const canonicalUrl = process.env.URL || undefined;
2024-07-09 20:55:42 +02:00
/** @type {import('@marp-team/marp-cli').Config} */
const config = {
2024-07-11 13:49:04 +02:00
allowLocalFiles: true,
themeSet: "themes",
url: canonicalUrl,
inputDir: "./slides",
output: "./present",
};
2024-07-09 20:55:42 +02:00
2024-07-11 13:49:04 +02:00
export default config;