2022-09-08 14:18:30 -05:00
|
|
|
/** @type {import('next').NextConfig} */
|
2022-12-09 01:22:16 -06:00
|
|
|
const { redirects: redirectsList } = require('./redirects');
|
2022-09-08 14:18:30 -05:00
|
|
|
|
2022-12-12 13:10:15 -06:00
|
|
|
module.exports = {
|
2022-09-09 07:13:20 -05:00
|
|
|
reactStrictMode: true,
|
|
|
|
swcMinify: true,
|
|
|
|
// Append the default value with md extensions
|
2022-12-12 13:10:15 -06:00
|
|
|
pageExtensions: ['ts', 'tsx', 'md'],
|
2022-12-09 01:22:16 -06:00
|
|
|
async redirects() {
|
2022-12-12 09:13:10 -06:00
|
|
|
return redirectsList;
|
|
|
|
}
|
2022-12-12 13:10:15 -06:00
|
|
|
};
|