File tree Expand file tree Collapse file tree 2 files changed +20
-20
lines changed Expand file tree Collapse file tree 2 files changed +20
-20
lines changed Original file line number Diff line number Diff line change 1
1
/** @type {import('next').NextConfig } */
2
2
const nextConfig = {
3
- reactStrictMode : true ,
4
- trailingSlash : true ,
3
+ reactStrictMode : true ,
4
+ trailingSlash : true ,
5
5
}
6
6
7
7
module . exports = nextConfig
Original file line number Diff line number Diff line change @@ -3,27 +3,27 @@ import type { AppProps } from "next/app"
3
3
import Head from "next/head"
4
4
5
5
const theme = extendTheme ( {
6
- styles : {
7
- global : {
8
- body : {
9
- bg : "gray.50" ,
10
- } ,
11
- } ,
12
- } ,
6
+ styles : {
7
+ global : {
8
+ body : {
9
+ bg : "gray.50" ,
10
+ } ,
11
+ } ,
12
+ } ,
13
13
} )
14
14
15
15
const MyApp : React . FC < AppProps > = ( { Component, pageProps } ) => {
16
- return (
17
- < >
18
- < Head >
19
- < link rel = "mask-icon" href = "/favicon.svg" color = "#000000" />
20
- < link rel = "alternate icon" type = "image/png" href = "/favicon.png" />
21
- </ Head >
22
- < ChakraProvider theme = { theme } >
23
- < Component { ...pageProps } />
24
- </ ChakraProvider >
25
- </ >
26
- )
16
+ return (
17
+ < >
18
+ < Head >
19
+ < link rel = "mask-icon" href = "/favicon.svg" color = "#000000" />
20
+ < link rel = "alternate icon" type = "image/png" href = "/favicon.png" />
21
+ </ Head >
22
+ < ChakraProvider theme = { theme } >
23
+ < Component { ...pageProps } />
24
+ </ ChakraProvider >
25
+ </ >
26
+ )
27
27
}
28
28
29
29
export default MyApp
You can’t perform that action at this time.
0 commit comments