mirror of
https://hub.gitmirror.com/https://github.com/ExamAware/ExamAware-docs
synced 2025-04-30 00:38:50 +00:00
25 lines
540 B
TypeScript
25 lines
540 B
TypeScript
// .vuepress/vuepress-pdf.config.ts
|
|
import { defineUserConfig } from "@condorhero/vuepress-plugin-export-pdf-v2";
|
|
import theme from "./theme.js";
|
|
import { viteBundler } from '@vuepress/bundler-vite'
|
|
|
|
export default defineUserConfig({
|
|
outFile: "ExamAware-Docs.pdf",
|
|
outDir: "pdf",
|
|
pdfOptions: {
|
|
format: "A4",
|
|
displayHeaderFooter: false,
|
|
margin: {
|
|
bottom: 70,
|
|
left: 25,
|
|
right: 25,
|
|
top: 70,
|
|
},
|
|
},
|
|
theme: theme,
|
|
bundler: viteBundler({
|
|
viteOptions: {},
|
|
vuePluginOptions: {},
|
|
}),
|
|
});
|