mirror of
https://github.com/jaypyles/Scraperr.git
synced 2025-10-30 05:57:12 +00:00
14 lines
259 B
JavaScript
14 lines
259 B
JavaScript
import dotenv from "dotenv";
|
|
dotenv.config();
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
distDir: "./dist",
|
|
images: { unoptimized: true },
|
|
env: {
|
|
DOMAIN: `${process.env.NEXT_PUBLIC_API_PATH}`,
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|