Files
coins/next.config.mjs
luisdralves b98df2f17c
All checks were successful
Build and Deploy / build-deploy (push) Successful in 1m7s
Add build and deploy workflow
2026-02-25 19:31:35 +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;