10 lines
171 B
JavaScript
10 lines
171 B
JavaScript
|
/** @type {import('next').NextConfig} */
|
||
|
const nextConfig = {
|
||
|
reactStrictMode: true,
|
||
|
server: {
|
||
|
host: '0.0.0.0',
|
||
|
port: 3000,
|
||
|
},
|
||
|
}
|
||
|
|
||
|
module.exports = nextConfig
|