2023-06-02 15:21:49 -04:00
|
|
|
/** @type {import('next').NextConfig} */
|
|
|
|
|
module.exports = {
|
|
|
|
|
reactStrictMode: true,
|
|
|
|
|
experimental: {
|
|
|
|
|
serverActions: true,
|
|
|
|
|
},
|
2023-09-04 12:58:45 -07:00
|
|
|
images: {
|
|
|
|
|
remotePatterns: [
|
|
|
|
|
{
|
|
|
|
|
protocol: 'https',
|
|
|
|
|
hostname: 'avatars.githubusercontent.com',
|
|
|
|
|
port: '',
|
|
|
|
|
pathname: '**',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
2023-06-02 15:21:49 -04:00
|
|
|
};
|