wildlife/next.config.mjs

17 lines
316 B
JavaScript
Raw Normal View History

2025-01-09 17:26:11 +00:00
/** @type {import('next').NextConfig} */
2025-01-09 19:57:15 +00:00
export default {
2025-01-09 17:26:11 +00:00
webpack: (config) => {
config.resolve.fallback = {
...config.resolve.fallback,
fs: false,
os: false,
path: false,
crypto: false,
}
return config
},
env: {
GOOGLE_API_KEY: process.env.GOOGLE_API_KEY,
},
}