This commit is contained in:
2025-04-23 20:24:12 +07:00
parent f933b5aad5
commit ef52d632bd
63 changed files with 3911 additions and 138 deletions

View File

@@ -1,7 +1,18 @@
import createNextIntlPlugin from "next-intl/plugin";
import type { NextConfig } from "next";
const withNextIntl = createNextIntlPlugin()
const nextConfig: NextConfig = {
/* config options here */
async rewrites() {
return [
{
source: '/api/hakushin',
destination: 'https://api.hakush.in/hsr/data/character.json',
},
];
},
};
export default nextConfig;
export default withNextIntl(nextConfig);