Files
coins/next.config.mjs
T
luis 175c6bcbe6
Build and Deploy / build-deploy (push) Failing after 2m2s
Add build and deploy workflow
2026-02-25 19:09:16 +00:00

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;