next.js/examples/active-class-name/next.config.js
next.config.js12 lines181 B
/** @type {import('next').NextConfig} */
module.exports = {
  async rewrites() {
    return [
      {
        source: "/blog",
        destination: "/news",
      },
    ];
  },
};
Quest for Codev2.0.0
/
SIGN IN