rsnext/test/integration/cache-header/pages/_app.js
JJ Kasper 77b23264bb Opt out of cache header if _app has custom getInitialProps (#7409)
* Opt out of cache header if _app has custom
getInitialProps to match autoExport behavior

* Fix wrong component

* Add test for cache header
2019-05-23 20:24:02 -07:00

7 lines
125 B
JavaScript

import App from 'next/app'
export default class MyApp extends App {
static async getInitialProps () {
return {}
}
}