nix_for_rustaceans/marp.config.mjs
2024-07-09 20:55:42 +02:00

13 lines
No EOL
269 B
JavaScript

const canonicalUrl = process.env.URL || undefined
/** @type {import('@marp-team/marp-cli').Config} */
const config = {
allowLocalFiles: true,
themeSet: 'themes',
url: canonicalUrl,
inputDir: "./slides",
output: "./present"
}
export default config