11 lines
275 B
JavaScript
11 lines
275 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
publicRuntimeConfig: {
|
|
linkURL: process.env.LINK_URL,
|
|
leafcutterURL: process.env.LEAFCUTTER_URL,
|
|
metamigoURL: process.env.METAMIGO_URL,
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|