rsnext/test/integration/amp-export-validation/pages/dog-cat.js
Sebastian Benz ae9b13e0be
Migrate to AMP Optimizer 2.0 (#10535)
* Migrate to AMP Optimizer 2.0

Most notable changes:

* Automatically import all missing AMP component scripts.
* Automatically add any missing mandatary AMP tags.
* 40% faster

I've updated the docs to mention component auto import and added a corresponding
test case.

* change validator tests which now pass validation

* Improve wording

Co-Authored-By: JJ Kasper <jj@jjsweb.site>

* Update adding-amp-components.md

Co-authored-by: JJ Kasper <jj@jjsweb.site>
Co-authored-by: Joe Haddad <timer150@gmail.com>
2020-02-14 16:01:43 -05:00

8 lines
200 B
JavaScript

export const config = { amp: true }
export default () => (
<div>
{/* I throw an error since <amp-img/> should be used instead */}
<img src="/dog.gif" height={400} width={800} />
</div>
)