Skip to content

Commit 553db86

Browse files
author
Strift
committed
run prettier
1 parent 18a95a8 commit 553db86

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

examples/with-meilisearch/env.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
declare namespace NodeJS {
22
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;
55
}
66
}

examples/with-meilisearch/next.config.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ const nextConfig = {
33
images: {
44
remotePatterns: [
55
{
6-
protocol: 'http',
7-
hostname: 'steam.meilisearch.dev',
6+
protocol: "http",
7+
hostname: "steam.meilisearch.dev",
88
},
99
],
1010
},
11-
}
11+
};
1212

13-
module.exports = nextConfig
13+
module.exports = nextConfig;

examples/with-meilisearch/postcss.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ module.exports = {
33
tailwindcss: {},
44
autoprefixer: {},
55
},
6-
}
6+
};
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
import { Inter } from 'next/font/google'
2-
import '../styles/globals.css'
1+
import { Inter } from "next/font/google";
2+
import "../styles/globals.css";
33

44
const inter = Inter({
5-
subsets: ['latin'],
6-
variable: '--font-inter',
7-
})
5+
subsets: ["latin"],
6+
variable: "--font-inter",
7+
});
88

99
export default function MyApp({ Component, pageProps }) {
1010
return (
1111
<main className={`${inter.variable} font-sans`}>
1212
<Component {...pageProps} />
1313
</main>
14-
)
14+
);
1515
}

0 commit comments

Comments
 (0)