-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnext.config.js
More file actions
23 lines (21 loc) · 780 Bytes
/
next.config.js
File metadata and controls
23 lines (21 loc) · 780 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/**
* @format
* @type {import('next').NextConfig}
*/
const nextConfig = {
reactStrictMode: true,
basePath: '/Kyles-Cookbook',
output: 'export',
images: { unoptimized: true },
env: {
basePath: '/Kyles-Cookbook',
// NEXT_PUBLIC_FIREBASE_API_KEY: 'AIzaSyAYytnWLc4vB2glt1X8tWz27gpgclDvrls',
// NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN: 'protected-page-login.firebaseapp.com',
// NEXT_PUBLIC_FIREBASE_PROJECT_ID: 'protected-page-login',
// NEXT_PUBLIC_FIREBASE_STORAGE_BUCKET: 'protected-page-login.appspot.com',
// NEXT_PUBLIC_FIREBASE_MESSAGING_SENDER_ID: '1006126548565',
// NEXT_PUBLIC_FIREBASE_APP_ID: '1:1006126548565:web:3968fb892dec003f15b6dc',
// NEXT_PUBLIC_FIREBASE_MEASUREMENT_ID: 'G-G3GNEWJKK7',
},
};
module.exports = nextConfig;