Files
PDI-MAKER/frontend/next.config.js

14 lines
273 B
JavaScript
Raw Normal View History

/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
reactStrictMode: true,
webpack: (config, { isServer }) => {
if (isServer) {
config.externals.push('_http_common')
}
return config
}
}
module.exports = nextConfig