next.js/test/e2e/app-dir/asset-prefix/next.config.js
next.config.js18 lines346 B
module.exports = {
  assetPrefix: '/custom-asset-prefix',
  async rewrites() {
    return {
      afterFiles: [
        {
          source: '/custom-asset-prefix/:path*',
          destination: '/:path*',
        },
        {
          source: '/not-custom-asset-prefix/:path*',
          destination: '/:path*',
        },
      ],
    }
  },
}
Quest for Codev2.0.0
/
SIGN IN