pollo/next.config.mjs

31 lines
738 B
JavaScript
Raw Normal View History

2023-04-20 04:20:00 -06:00
// @ts-check
import withPWA from "next-pwa";
!process.env.SKIP_ENV_VALIDATION && (await import("./src/env.mjs"));
/** @type {import("next").NextConfig} */
const config = {
reactStrictMode: true,
i18n: {
locales: ["en"],
defaultLocale: "en",
},
images: {
domains: ["avatars.githubusercontent.com", "lh3.googleusercontent.com"],
},
2023-06-03 01:35:40 -06:00
webpack: (config, { dev, isServer }) => {
2023-06-13 16:31:43 -06:00
Object.assign(config.resolve.alias, {
"react/jsx-runtime.js": "preact/compat/jsx-runtime",
react: "preact/compat",
"react-dom/test-utils": "preact/test-utils",
"react-dom": "preact/compat",
});
2023-06-03 01:35:40 -06:00
return config;
},
2023-04-20 04:20:00 -06:00
};
const nextConfig = withPWA({
dest: "public",
})(config);
export default nextConfig;