next.js/test/production/terser-class-static-blocks/pages/index.tsx
index.tsx19 lines334 B
/**
 * My JSDoc comment that should be minified away
 *
 * @author Example One <example1@example.com>
 * @author Example Two <example2@example.com>
 * @copyright 2024 Vercel Inc
 */
class TestClass {
  static text = 'hello world'
}

export default function Page() {
  return (
    <div>
      <p>{TestClass.text}</p>
    </div>
  )
}
Quest for Codev2.0.0
/
SIGN IN