Files
Lovemap/next.config.mjs
T

13 lines
202 B
JavaScript

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