accords-library.com/next.config.js

22 lines
431 B
JavaScript
Raw Normal View History

2021-11-03 22:46:45 +00:00
/** @type {import('next').NextConfig} */
module.exports = {
2022-02-17 21:39:38 +00:00
swcMinify: true,
2021-11-03 22:46:45 +00:00
reactStrictMode: true,
i18n: {
2022-02-16 18:44:05 +00:00
locales: ["en", "fr", "ja", "es", "xx"],
defaultLocale: "en",
},
images: {
2022-02-19 04:28:04 +00:00
domains: ["img.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
};