57 lines
1.1 KiB
JavaScript
57 lines
1.1 KiB
JavaScript
//@ts-check
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
|
const { composePlugins, withNx } = require('@nx/next');
|
|
|
|
/**
|
|
* @type {import('@nx/next/plugins/with-nx').WithNxOptions}
|
|
**/
|
|
const nextConfig = {
|
|
nx: {
|
|
// Set this to true if you would like to use SVGR
|
|
// See: https://github.com/gregberge/vgr
|
|
svgr: false,
|
|
},
|
|
transpilePackages: ['crypto-hash'],
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: 'http',
|
|
hostname: '**',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: '**',
|
|
},
|
|
],
|
|
},
|
|
async redirects() {
|
|
return [
|
|
{
|
|
source: '/api/uploads/:path*',
|
|
destination:
|
|
process.env.STORAGE_PROVIDER === 'local' ? '/uploads/:path*' : '/404',
|
|
permanent: true,
|
|
},
|
|
];
|
|
},
|
|
async rewrites() {
|
|
return [
|
|
{
|
|
source: '/uploads/:path*',
|
|
destination:
|
|
process.env.STORAGE_PROVIDER === 'local'
|
|
? '/api/uploads/:path*'
|
|
: '/404',
|
|
},
|
|
];
|
|
},
|
|
};
|
|
|
|
const plugins = [
|
|
// Add more Next.js plugins to this list if needed.
|
|
withNx,
|
|
];
|
|
|
|
module.exports = composePlugins(...plugins)(nextConfig);
|