new-dynamo / next.config.js
MoShow's picture
1. Add this below into the RAD-X Application
ae1a925 verified
raw
history blame contribute delete
236 Bytes
```javascript
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
env: {
NEXT_PUBLIC_MAPBOX_TOKEN: process.env.NEXT_PUBLIC_MAPBOX_TOKEN,
},
}
module.exports = nextConfig
```