File tree 2 files changed +9
-9
lines changed
2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 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" ;
3
3
4
4
/**
5
5
* Quartz 4.0 Configuration
@@ -86,6 +86,6 @@ const config: QuartzConfig = {
86
86
Plugin . NotFoundPage ( ) ,
87
87
] ,
88
88
} ,
89
- }
89
+ } ;
90
90
91
- export default config
91
+ export default config ;
Original file line number Diff line number Diff line change 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" ;
3
3
4
4
// components shared across all pages
5
5
export const sharedPageComponents : SharedLayout = {
@@ -11,7 +11,7 @@ export const sharedPageComponents: SharedLayout = {
11
11
// "Discord Community": "https://discord.gg/cRFFHYye7t",
12
12
} ,
13
13
} ) ,
14
- }
14
+ } ;
15
15
16
16
// components for pages that display a single page (e.g. a single note)
17
17
export const defaultContentPageLayout : PageLayout = {
@@ -33,7 +33,7 @@ export const defaultContentPageLayout: PageLayout = {
33
33
Component . DesktopOnly ( Component . TableOfContents ( ) ) ,
34
34
Component . Backlinks ( ) ,
35
35
] ,
36
- }
36
+ } ;
37
37
38
38
// components for pages that display lists of pages (e.g. tags or folders)
39
39
export const defaultListPageLayout : PageLayout = {
@@ -46,4 +46,4 @@ export const defaultListPageLayout: PageLayout = {
46
46
Component . DesktopOnly ( Component . Explorer ( ) ) ,
47
47
] ,
48
48
right : [ ] ,
49
- }
49
+ } ;
You can’t perform that action at this time.
0 commit comments