11 lines
194 B
JavaScript
11 lines
194 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'standalone',
|
|
reactStrictMode: true,
|
|
swcMinify: true,
|
|
server: {
|
|
port: 8080,
|
|
},
|
|
}
|
|
|
|
module.exports = nextConfig
|