mirror of
https://github.com/TheRealOwenRees/echecsfrance.git
synced 2026-07-23 04:26:57 +00:00
8 lines
195 B
JavaScript
8 lines
195 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const dotenvExpand = require("dotenv-expand");
|
|
|
|
dotenvExpand.expand({ parsed: { ...process.env } });
|
|
const nextConfig = {};
|
|
|
|
module.exports = nextConfig;
|