fixed next.config.mjs

This commit is contained in:
ZareMate 2025-04-14 13:05:40 +02:00
parent 41132eee61
commit 6c4ea59e12
Signed by: zaremate
GPG Key ID: 369A0E45E03A81C3

View File

@ -4,12 +4,15 @@
*/
import "./src/env.js";
/** @type {import("next").NextConfig} */
const nextConfig = {
reactStrictMode: true,
eslint: {
ignoreDuringBuilds: true,
output: "standalone",
},
output: "standalone",
allowedDevOrigins: [
"http://localhost:3000",
"http://10.0.0.1:3000",
@ -29,4 +32,6 @@ const nextConfig = {
};
export default nextConfig;