accords-library.com/next.config.js

21 lines
415 B
JavaScript
Raw Normal View History

2021-11-03 22:46:45 +00:00
/** @type {import('next').NextConfig} */
module.exports = {
reactStrictMode: true,
i18n: {
2022-02-16 18:44:05 +00:00
locales: ["en", "fr", "ja", "es", "xx"],
defaultLocale: "en",
},
images: {
2022-02-16 18:44:05 +00:00
domains: ["strapi.accords-library.com"],
},
2022-02-14 04:49:43 +00:00
async redirects() {
return [
{
2022-02-16 18:44:05 +00:00
source: "/discord",
destination: "https://discord.com/invite/5mcXcRAczj",
2022-02-14 04:49:43 +00:00
permanent: false,
},
2022-02-16 18:44:05 +00:00
];
2022-02-14 04:49:43 +00:00
},
2022-02-16 18:44:05 +00:00
};