Files
Lovemap/next.config.mjs
2024-10-01 22:59:58 +02:00

13 lines
206 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
env: {
MAPBOX_TOKEN: process.env.MAPBOX_TOKEN,
},
images: {
unoptimized: true,
},
};
export default nextConfig;