fix: opt out of static site generation to enable publicRuntimeConfig

This commit is contained in:
Elias Schneider
2022-10-18 09:17:57 +02:00
parent a8a56321dd
commit 239b18cdae
3 changed files with 6 additions and 26 deletions

View File

@@ -76,4 +76,9 @@ function App({ Component, pageProps }: AppProps) {
);
}
// Ops out of static site generation to use publicRuntimeConfig
App.getInitialProps = () => {
return {};
};
export default App;