rwadurian/frontend/admin-web/next.config.ts

29 lines
508 B
TypeScript

import type { NextConfig } from 'next';
const nextConfig: NextConfig = {
output: 'standalone',
reactStrictMode: true,
sassOptions: {
silenceDeprecations: ['legacy-js-api'],
},
images: {
remotePatterns: [
{
protocol: 'https',
hostname: '**',
},
],
},
async redirects() {
return [
{
source: '/',
destination: '/dashboard',
permanent: false,
},
];
},
};
export default nextConfig;