mirror of
https://github.com/kjanat/livedash-node.git
synced 2026-01-16 15:12:09 +01:00
14 lines
254 B
JavaScript
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;
|