accords-library.com/next.config.js

32 lines
574 B
JavaScript
Raw Normal View History

2021-11-03 22:46:45 +00:00
/** @type {import('next').NextConfig} */
2022-03-28 21:51:41 +00:00
/* CONFIG */
const locales = ["en", "es", "fr", "pt-br", "ja"];
2022-03-28 21:51:41 +00:00
/* END CONFIG */
2021-11-03 22:46:45 +00:00
module.exports = {
2022-02-17 21:39:38 +00:00
swcMinify: true,
2021-11-03 22:46:45 +00:00
reactStrictMode: true,
i18n: {
2022-03-28 21:51:41 +00:00
locales: locales,
2022-02-16 18:44:05 +00:00
defaultLocale: "en",
},
images: {
2022-04-01 18:47:42 +00:00
domains: ["img.accords-library.com", "watch.accords-library.com"],
},
2022-03-28 21:51:41 +00:00
serverRuntimeConfig: {
locales: locales,
},
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
};