12 lines
263 B
JavaScript
12 lines
263 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;
|