add web demo
This commit is contained in:
15
apps/web/next.config.js
Normal file
15
apps/web/next.config.js
Normal file
@@ -0,0 +1,15 @@
|
||||
/** @type {import('next').NextConfig} */
|
||||
const nextConfig = {
|
||||
redirects: async () => {
|
||||
return [
|
||||
{
|
||||
source: "/github",
|
||||
destination: "https://github.com/yesmore/inke",
|
||||
permanent: true,
|
||||
},
|
||||
];
|
||||
},
|
||||
productionBrowserSourceMaps: true,
|
||||
};
|
||||
|
||||
module.exports = nextConfig;
|
Reference in New Issue
Block a user