16 lines
309 B
JavaScript
16 lines
309 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
redirects: async () => {
|
|
return [
|
|
{
|
|
source: "/github",
|
|
destination: "https://github.com/yesmore/inke",
|
|
permanent: true,
|
|
},
|
|
];
|
|
},
|
|
productionBrowserSourceMaps: true,
|
|
};
|
|
|
|
module.exports = nextConfig;
|