diff --git a/test/production/typescript-basic/app/pages/_document.tsx b/test/production/typescript-basic/app/pages/_document.tsx new file mode 100644 index 000000000000..6916edcdf807 --- /dev/null +++ b/test/production/typescript-basic/app/pages/_document.tsx @@ -0,0 +1,16 @@ +import { Html, Head, Main, NextScript } from 'next/document' + +export default function Document() { + return ( + + + + + + +
+ + + + ) +}