Cleanup post caching

This commit is contained in:
2022-04-27 04:03:21 -04:00
parent 2cc267adda
commit 6f37de0c2d
10 changed files with 68 additions and 41 deletions
+1 -1
View File
@@ -2,6 +2,6 @@ import type { AppProps } from 'next/app'
import 'normalize.css';
import '../styles/global.css';
export default function MyApp({ Component, pageProps }: AppProps) {
export default function App({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />
}