2022-11-14 23:12:51 +01:00
|
|
|
/** @type {import('next').NextConfig} */
|
2023-01-07 15:45:03 +01:00
|
|
|
require("dotenv").config({ path: "../../.env" });
|
|
|
|
|
|
2022-11-14 23:12:51 +01:00
|
|
|
const nextConfig = {
|
|
|
|
|
reactStrictMode: true,
|
|
|
|
|
swcMinify: true,
|
2022-11-24 12:21:45 +01:00
|
|
|
distDir: "build",
|
|
|
|
|
};
|
2022-11-14 23:12:51 +01:00
|
|
|
|
2022-11-24 12:21:45 +01:00
|
|
|
module.exports = nextConfig;
|