We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f50931 commit 932e806Copy full SHA for 932e806
packages/civic-auth/nextjs/next.config.ts
@@ -5,7 +5,7 @@ const nextConfig: NextConfig = {
5
/* config options here */
6
};
7
const withCivicAuth = createCivicAuthPlugin({
8
- clientId: `${process.env.CLIENT_ID}`
+ clientId: process.env.CLIENT_ID as string
9
});
10
11
export default withCivicAuth(nextConfig);
0 commit comments