Skip to content

Commit

Permalink
Merge branch 'canary' into fix/reland-static-prefetches
Browse files Browse the repository at this point in the history
  • Loading branch information
kodiakhq[bot] authored Oct 2, 2023
2 parents e11ba4d + be952fb commit 9b3091f
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/with-stripe-typescript/app/api/webhooks/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export async function POST(req: Request) {
console.log(`💰 PaymentIntent status: ${data.status}`)
break
default:
throw new Error(`Unhhandled event: ${event.type}`)
throw new Error(`Unhandled event: ${event.type}`)
}
} catch (error) {
console.log(error)
Expand Down
2 changes: 2 additions & 0 deletions packages/next/src/lib/turbopack-warning.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@ const supportedTurbopackNextConfigOptions = [
'experimental.deploymentId',

// Experimental options that don't affect compilation
'serverRuntimeConfig',
'publicRuntimeConfig',
'experimental.proxyTimeout',
'experimental.caseSensitiveRoutes',
'experimental.workerThreads',
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/app-dir/app/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ createNextDescribe(
if (!process.env.NEXT_EXPERIMENTAL_COMPILE) {
it('should have correct size in build output', async () => {
expect(next.cliOutput).toMatch(
/\/dashboard\/another.*? [^0]{1,} [\w]{1,}B/
/\/dashboard\/another.*? *?[^0]\d{1,} [\w]{1,}B/
)
})
}
Expand Down
1 change: 0 additions & 1 deletion test/integration/config-mjs/next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ export default {
maxInactiveAge: 1000 * 60 * 60,
},
poweredByHeader: false,
cssModules: true,
serverRuntimeConfig: {
mySecret: 'secret',
},
Expand Down
1 change: 0 additions & 1 deletion test/integration/config/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ module.exports = {
maxInactiveAge: 1000 * 60 * 60,
},
poweredByHeader: false,
cssModules: true,
serverRuntimeConfig: {
mySecret: 'secret',
},
Expand Down

0 comments on commit 9b3091f

Please sign in to comment.