niisse-net-js/next.config.js

15 lines
268 B
JavaScript
Raw Permalink Normal View History

2023-06-29 09:35:37 +02:00
/** @type {import('next').NextConfig} */
const nextConfig = {
async redirects() {
return [
{
source: '/mail-redirect',
destination: 'mailto:niisse@protonmail.com',
permanent: true,
},
]
},
}
2023-06-29 09:35:37 +02:00
module.exports = nextConfig