next.js/test/e2e/app-dir/dynamic-import-tree-shaking/app/webpack-exports-comment/page.js
page.js7 lines190 B
export default async function Page() {
  const { commentUsed } = await import(
    /* webpackExports: ["commentUsed"] */ '../../lib/comment-module'
  )
  return <div>{commentUsed()}</div>
}
Quest for Codev2.0.0
/
SIGN IN