All checks were successful
Build and Deploy / build-deploy (push) Successful in 1m7s
15 lines
262 B
JavaScript
15 lines
262 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'standalone',
|
|
reactStrictMode: true,
|
|
redirects: () => [
|
|
{
|
|
destination: '/',
|
|
permanent: true,
|
|
source: '/showcase-banknotes'
|
|
}
|
|
]
|
|
};
|
|
|
|
export default nextConfig;
|