13 lines
269 B
JavaScript
13 lines
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
|