Skip to content

Commit 9a161c3

Browse files
committed
formatting
1 parent 14107af commit 9a161c3

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

quartz.config.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { QuartzConfig } from "./quartz/cfg"
2-
import * as Plugin from "./quartz/plugins"
1+
import { QuartzConfig } from "./quartz/cfg";
2+
import * as Plugin from "./quartz/plugins";
33

44
/**
55
* Quartz 4.0 Configuration
@@ -86,6 +86,6 @@ const config: QuartzConfig = {
8686
Plugin.NotFoundPage(),
8787
],
8888
},
89-
}
89+
};
9090

91-
export default config
91+
export default config;

quartz.layout.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { PageLayout, SharedLayout } from "./quartz/cfg"
2-
import * as Component from "./quartz/components"
1+
import { PageLayout, SharedLayout } from "./quartz/cfg";
2+
import * as Component from "./quartz/components";
33

44
// components shared across all pages
55
export const sharedPageComponents: SharedLayout = {
@@ -11,7 +11,7 @@ export const sharedPageComponents: SharedLayout = {
1111
// "Discord Community": "https://discord.gg/cRFFHYye7t",
1212
},
1313
}),
14-
}
14+
};
1515

1616
// components for pages that display a single page (e.g. a single note)
1717
export const defaultContentPageLayout: PageLayout = {
@@ -33,7 +33,7 @@ export const defaultContentPageLayout: PageLayout = {
3333
Component.DesktopOnly(Component.TableOfContents()),
3434
Component.Backlinks(),
3535
],
36-
}
36+
};
3737

3838
// components for pages that display lists of pages (e.g. tags or folders)
3939
export const defaultListPageLayout: PageLayout = {
@@ -46,4 +46,4 @@ export const defaultListPageLayout: PageLayout = {
4646
Component.DesktopOnly(Component.Explorer()),
4747
],
4848
right: [],
49-
}
49+
};

0 commit comments

Comments
 (0)