1
0
Fork 0
mirror of https://gitlab.com/MrFry/qmining-page synced 2025-04-01 20:23:44 +02:00

Removed console.logs

This commit is contained in:
mrfry 2021-01-26 14:27:46 +01:00
parent f3e2e2cec3
commit 0f3841a2b4
6 changed files with 4 additions and 43 deletions
src/pages

View file

@ -54,31 +54,4 @@ function MyApp({ Component, pageProps, router }) {
)
}
// MyApp.getStaticProps = () => {
// console.log('aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa')
// const res = await fetch('https://stuff.frylabs.net/asd.json', {
// credentials: 'include',
// })
// const resp = await res.json()
// console.log('aaaaaaaaaaaaa', resp)
// return {
// props: {
// msg: 'aaaaa',
// fetched: resp,
// },
// }
// }
// Only uncomment this method if you have blocking data requirements for
// every single page in your application. This disables the ability to
// perform automatic static optimization, causing every page in your app to
// be server-side rendered.
//
// MyApp.getInitialProps = async (appContext) => {
// // calls page's `getInitialProps` and fills `appProps.pageProps`
// const appProps = await App.getInitialProps(appContext);
//
// return { ...appProps }
// }
export default MyApp