Files
livedash-node/next.config.js
Max Kowalski 653d70022b Broken shit
2025-06-26 21:00:19 +02:00

14 lines
254 B
JavaScript

/**
* @type {import('next').NextConfig}
**/
const nextConfig = {
reactStrictMode: true,
// Allow cross-origin requests from specific origins in development
allowedDevOrigins: [
"127.0.0.1",
"localhost"
],
};
export default nextConfig;