* upgrade to next 14 * use default react import * use `next/compat/router` * set baseurl for next13 app * get it working * fix Error Component * fix floating promisis * Create modern-cups-cheat.md * fix type of error boundary * get react query working again * remove experimental * remove broken test since next export is removed * fix qm integration test * fix mismatch of cookie names in client and server * fix `auth-with-rpc` * fix unit tests * fix snapshot * remove `@tanstack/query-core` dep from `@blitzjs/rpc` * Update .changeset/modern-cups-cheat.md * fix: lockfile * regression: re-export react query client utilites * Update .changeset/modern-cups-cheat.md * do not export `withRouter` * revert change to `BlitzProvider` * remove unnecessary next types
7 lines
149 B
JavaScript
7 lines
149 B
JavaScript
const {withBlitz} = require("@blitzjs/next")
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {}
|
|
|
|
module.exports = withBlitz(nextConfig)
|