Files
Firefly_Sranalysis/next.config.ts
2025-04-23 20:24:12 +07:00

19 lines
384 B
TypeScript

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