Newer
Older
taehui / qwilight-fe / next.config.mjs
@Taehui Taehui on 17 Mar 535 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"}/qwilight/www/:path*`
            },
        ]
    },
    async redirects() {
        return [
            {
                source: "/",
                destination: "/note",
                permanent: true
            },
        ]
    },
    basePath: "/qwilight",
});