-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.config.mjs
45 lines (44 loc) · 1.12 KB
/
next.config.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/** @type {import('next').NextConfig} */
const nextConfig = {
env: {
// API: 'http://localhost:3000',
API: 'https://autobook1.vercel.app',
EMAIL: process.env.EMAIL,
PASSWORD: process.env.PASSWORD,
FIREBASE_API_KEY: process.env.FIREBASE_API_KEY,
AUTH_DOMAIN: process.env.AUTH_DOMAIN,
PROJECT_ID: process.env.PROJECT_ID,
STORAGE_BUCKET: process.env.STORAGE_BUCKET,
MESSAGING_SENDER_ID: process.env.MESSAGING_SENDER_ID,
APP_ID: process.env.APP_ID,
MEASUREMENT_ID: process.env.MEASUREMENT_ID,
},
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'api.dicebear.com',
},
{
protocol: 'https',
hostname: 'plus.unsplash.com',
},
{
protocol: 'https',
hostname: 'images.unsplash.com',
},
{
protocol: 'https',
hostname: 'assets.aceternity.com',
},
{
protocol: 'https',
hostname: 'firebasestorage.googleapis.com',
},
],
},
reactStrictMode: false,
swcMinify: true,
};
export const productionBrowserSourceMaps = true;
export default nextConfig;