10 lines
235 B
JavaScript
10 lines
235 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
env: {
|
|
NEXT_PUBLIC_API_URL: process.env.NEXT_PUBLIC_API_URL,
|
|
NEXT_PUBLIC_TEST_VAR: 'This is a test',
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig; |