mirror of
https://github.com/ryan4yin/nixos-and-flakes-book.git
synced 2024-11-26 10:03:13 +01:00
11 lines
188 B
TypeScript
11 lines
188 B
TypeScript
|
// .vitepress/theme/index.ts
|
||
|
import DefaultTheme from "vitepress/theme";
|
||
|
|
||
|
// custom CSS
|
||
|
import "../style/print.css";
|
||
|
|
||
|
export default {
|
||
|
// Extending the Default Theme
|
||
|
...DefaultTheme,
|
||
|
};
|