Skip to content

Commit

Permalink
feat: unflag experimental.assets (#7921)
Browse files Browse the repository at this point in the history
Co-authored-by: Sarah Rainsberger <[email protected]>
Co-authored-by: Emanuele Stoppa <[email protected]>
  • Loading branch information
3 people authored Aug 16, 2023
1 parent 24ed05d commit f5df78e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions packages/integrations/cloudflare/test/prerender.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ describe('Prerendering', () => {

expect(foundRoutes).to.deep.equal({
version: 1,
include: ['/'],
include: ['/', '/_image'],
exclude: [],
});
});
Expand Down Expand Up @@ -51,7 +51,7 @@ describe('Hybrid rendering', () => {

expect(foundRoutes).to.deep.equal({
version: 1,
include: ['/one'],
include: ['/one', '/_image'],
exclude: [],
});
});
Expand Down
6 changes: 3 additions & 3 deletions packages/integrations/cloudflare/test/routesJson.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ describe('_routes.json generation', () => {

expect(routes).to.deep.equal({
version: 1,
include: ['/a/*'],
include: ['/a/*', '/_image'],
exclude: ['/a/', '/a/redirect', '/a/index.html'],
});
});
Expand Down Expand Up @@ -70,8 +70,8 @@ describe('_routes.json generation', () => {

expect(routes).to.deep.equal({
version: 1,
include: ['/'],
exclude: ['/'],
include: ['/_image'],
exclude: [],
});
});
});
Expand Down

0 comments on commit f5df78e

Please sign in to comment.