next.js/test/integration/css-fixtures/csp-style-src-nonce/pages/index.js
index.js16 lines309 B
import Link from 'next/link'
import css from './index.module.css'

export default function Home() {
  return (
    <main>
      <Link href="/other" prefetch={false} id="link-other">
        other page
      </Link>
      <h1 id="green-title" className={css.green}>
        Green
      </h1>
    </main>
  )
}
Quest for Codev2.0.0
/
SIGN IN