24 lines
411 B
JavaScript
24 lines
411 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
redirects: () => [
|
|
{
|
|
destination: "/",
|
|
permanent: true,
|
|
source: "/pile",
|
|
},
|
|
{
|
|
destination: "/",
|
|
permanent: true,
|
|
source: "/showcase",
|
|
},
|
|
{
|
|
destination: "/",
|
|
permanent: true,
|
|
source: "/showcase-banknotes",
|
|
},
|
|
],
|
|
reactStrictMode: true,
|
|
};
|
|
|
|
export default nextConfig;
|