Newer
Older
taehui / taehui-fe / next.config.mjs
@Taehui Taehui on 17 Mar 313 bytes 2024-03-17 오후 2:12
import createNextIntlPlugin from 'next-intl/plugin';

export default createNextIntlPlugin()({
    async rewrites() {
        return [
            {
                source: "/www/:path*",
                destination: `${process.env.API ?? "https://taehui.ddns.net"}/www/:path*`
            },
        ]
    },
});