rsnext/test/integration/amphtml/pages/custom-scripts.js
JJ Kasper fa45fa0a60
Add export const config support and make withAmp a no-op (#7525)
* Add export const config support and make withAmp a no-op

* Use babel plugin for PageConfig

* Fix serverless-loader exports

* Add backwards compatibility for withAmp
2019-06-09 17:16:14 -07:00

17 lines
360 B
JavaScript

import Head from 'next/head'
export const config = { amp: true }
export default () => (
<div>
<Head>
<script src='/im-not-allowed.js' type='text/javascript' />
<script
dangerouslySetInnerHTML={{
__html: `console.log("I'm not either :p")`
}}
/>
</Head>
<p>We only allow AMP scripts now</p>
</div>
)