8 lines
138 B
JavaScript
8 lines
138 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
module.exports = {
|
|
reactStrictMode: true,
|
|
experimental: {
|
|
outputStandalone: true,
|
|
},
|
|
}
|