10 lines
174 B
JavaScript
10 lines
174 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'standalone',
|
|
serverExternalPackages: [
|
|
'awilix',
|
|
],
|
|
};
|
|
|
|
export default nextConfig;
|