mirror of
https://github.com/ryan4yin/nixos-and-flakes-book.git
synced 2024-11-23 00:23:32 +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,
|
|
};
|