next.js/test/development/app-dir/source-mapping/next.config.js
next.config.js21 lines309 B
/**
 * @type {import('next').NextConfig}
 */

const nextConfig = {
  assetPrefix: '/assets',
  rewrites() {
    return {
      beforeFiles: [
        {
          source: '/assets/:path*',
          destination: '/:path*',
        },
      ],
    }
  },
  cacheComponents: true,
}

module.exports = nextConfig
Quest for Codev2.0.0
/
SIGN IN