2022-08-15 22:17:26 +00:00
|
|
|
/* @type {import('next').NextConfig} */
|
2021-11-03 22:46:45 +00:00
|
|
|
module.exports = {
|
|
|
|
reactStrictMode: true,
|
2022-10-29 14:22:49 +00:00
|
|
|
poweredByHeader: false,
|
2022-11-12 20:14:42 +00:00
|
|
|
experimental: {
|
|
|
|
appDir: true,
|
2021-12-23 22:20:47 +00:00
|
|
|
},
|
|
|
|
images: {
|
2022-04-01 18:47:42 +00:00
|
|
|
domains: ["img.accords-library.com", "watch.accords-library.com"],
|
2021-12-23 22:20:47 +00:00
|
|
|
},
|
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-05-21 11:18:57 +00:00
|
|
|
{
|
|
|
|
source: "/gallery",
|
2022-06-18 19:53:23 +00:00
|
|
|
destination: "https://gallery.accords-library.com/posts",
|
2022-05-21 11:18:57 +00:00
|
|
|
permanent: false,
|
|
|
|
},
|
2022-08-12 22:33:24 +00:00
|
|
|
{
|
|
|
|
source: "/contents/folder",
|
|
|
|
destination: "/contents",
|
|
|
|
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
|
|
|
};
|