File tree Expand file tree Collapse file tree 4 files changed +13
-13
lines changed
examples/with-meilisearch Expand file tree Collapse file tree 4 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 1
1
declare namespace NodeJS {
2
2
interface ProcessEnv {
3
- NEXT_PUBLIC_MEILISEARCH_HOST : string
4
- NEXT_PUBLIC_MEILISEARCH_SEARCH_API_KEY : string
3
+ NEXT_PUBLIC_MEILISEARCH_HOST : string ;
4
+ NEXT_PUBLIC_MEILISEARCH_SEARCH_API_KEY : string ;
5
5
}
6
6
}
Original file line number Diff line number Diff line change @@ -3,11 +3,11 @@ const nextConfig = {
3
3
images : {
4
4
remotePatterns : [
5
5
{
6
- protocol : ' http' ,
7
- hostname : ' steam.meilisearch.dev' ,
6
+ protocol : " http" ,
7
+ hostname : " steam.meilisearch.dev" ,
8
8
} ,
9
9
] ,
10
10
} ,
11
- }
11
+ } ;
12
12
13
- module . exports = nextConfig
13
+ module . exports = nextConfig ;
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ module.exports = {
3
3
tailwindcss : { } ,
4
4
autoprefixer : { } ,
5
5
} ,
6
- }
6
+ } ;
Original file line number Diff line number Diff line change 1
- import { Inter } from ' next/font/google'
2
- import ' ../styles/globals.css'
1
+ import { Inter } from " next/font/google" ;
2
+ import " ../styles/globals.css" ;
3
3
4
4
const inter = Inter ( {
5
- subsets : [ ' latin' ] ,
6
- variable : ' --font-inter' ,
7
- } )
5
+ subsets : [ " latin" ] ,
6
+ variable : " --font-inter" ,
7
+ } ) ;
8
8
9
9
export default function MyApp ( { Component, pageProps } ) {
10
10
return (
11
11
< main className = { `${ inter . variable } font-sans` } >
12
12
< Component { ...pageProps } />
13
13
</ main >
14
- )
14
+ ) ;
15
15
}
You can’t perform that action at this time.
0 commit comments