Files
taiji-pad-v0/next.config.mjs
T

26 lines
451 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
typescript: {
ignoreBuildErrors: true,
},
images: {
unoptimized: true,
},
async redirects() {
return [
{
source: "/admin",
destination: "/admin/dashboard",
permanent: false,
},
{
source: "/channel",
destination: "/channel/dashboard",
permanent: false,
},
]
},
}
export default nextConfig