2023-09-24 23:49:24 -06:00
|
|
|
import "./env.mjs";
|
2023-04-20 04:20:00 -06:00
|
|
|
|
|
|
|
/** @type {import("next").NextConfig} */
|
|
|
|
const config = {
|
|
|
|
reactStrictMode: true,
|
|
|
|
|
|
|
|
i18n: {
|
|
|
|
locales: ["en"],
|
|
|
|
defaultLocale: "en",
|
|
|
|
},
|
|
|
|
images: {
|
2023-08-12 17:12:42 -06:00
|
|
|
domains: [
|
|
|
|
"avatars.githubusercontent.com",
|
|
|
|
"lh3.googleusercontent.com",
|
|
|
|
"img.clerk.com",
|
|
|
|
],
|
2023-04-20 04:20:00 -06:00
|
|
|
},
|
2023-10-08 13:21:30 -06:00
|
|
|
experimental: {
|
|
|
|
serverActions: true,
|
|
|
|
},
|
2023-04-20 04:20:00 -06:00
|
|
|
};
|
2023-06-18 01:01:17 -06:00
|
|
|
|
|
|
|
export default config;
|