TerminalTinder/next.config.js

10 lines
171 B
JavaScript
Raw Permalink Normal View History

2024-09-09 17:03:22 -04:00
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
server: {
host: '0.0.0.0',
port: 3000,
},
}
module.exports = nextConfig