Newer
Older
taehui / qwilight-fe / next.config.mjs
@Taehui Taehui on 16 Mar 534 bytes 2024-03-17 오전 2:07
import createNextIntlPlugin from 'next-intl/plugin';

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