2022-11-30 08:11:45 +00:00
|
|
|
/** @type {import('next').NextConfig} */
|
|
|
|
const nextConfig = {
|
2022-12-01 08:33:37 +00:00
|
|
|
reactStrictMode: false,
|
2022-11-30 08:11:45 +00:00
|
|
|
swcMinify: true,
|
2022-12-06 10:41:38 +00:00
|
|
|
compiler: {
|
|
|
|
styledComponents: true,
|
|
|
|
},
|
2022-12-07 09:17:59 +00:00
|
|
|
images: {
|
|
|
|
remotePatterns: [
|
|
|
|
{
|
|
|
|
protocol: "https",
|
|
|
|
hostname: "pbs.twimg.com",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
protocol: "https",
|
|
|
|
hostname: "raw.githubusercontent.com",
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2022-12-01 08:33:37 +00:00
|
|
|
};
|
2022-11-30 08:11:45 +00:00
|
|
|
|
2022-12-01 08:33:37 +00:00
|
|
|
module.exports = nextConfig;
|