mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-06-27 16:10:30 +08:00
d10f691eeb
lint Fix Hero as tag types Fix build warning regarding i18n Update package.json and package-lock.json Revert package-lock.json Add package-lock, fix build Pre-commit Fix default export in favour of named export Refactor cta buttons to use react-icons Remove unused props from CircleBackground
25 lines
566 B
JavaScript
25 lines
566 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const { i18n } = require("./next-i18next.config");
|
|
|
|
const nextConfig = {
|
|
output: "standalone",
|
|
reactStrictMode: true,
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: "https",
|
|
hostname: "**.discordapp.com",
|
|
},
|
|
],
|
|
},
|
|
experimental: {
|
|
/* Disabling this for now only because it causes a warning in the console that cannot be silenced for eslint
|
|
If this can be resolved, we should re-enable this.
|
|
*/
|
|
// scrollRestoration: true,
|
|
},
|
|
i18n,
|
|
};
|
|
|
|
module.exports = nextConfig;
|