8 lines
158 B
JavaScript
8 lines
158 B
JavaScript
|
|
/** @type {import('next').NextConfig} */
|
||
|
|
const nextConfig = {
|
||
|
|
reactStrictMode: true,
|
||
|
|
serverExternalPackages: ['archiver'],
|
||
|
|
};
|
||
|
|
|
||
|
|
export default nextConfig;
|