Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions test/e2e/app-dir/back-forward-cache/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// @ts-ignore -- the latest @types/react don't have this anymore
import { unstable_Activity as Activity } from 'react'

export default function Page() {
Expand Down
2 changes: 1 addition & 1 deletion test/integration/url-imports/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module.exports = {
experimental: {
urlImports: [
'http://localhost:12345/',
'https://github.com/vercel/next.js/raw/canary/',
'https://github.com/vercel/next.js/raw/next-15-5/',
],
},
}
2 changes: 1 addition & 1 deletion test/integration/url-imports/pages/css.module.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.main {
background: url('https://github.com/vercel/next.js/raw/canary/test/integration/url/public/vercel.png');
background: url('https://github.com/vercel/next.js/raw/next-15-5/test/integration/url/public/vercel.png');
background-size: contain;
width: 300px;
height: 300px;
Expand Down
2 changes: 1 addition & 1 deletion test/integration/url-imports/pages/image.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Image from 'next/image'
import logo from 'https://github.com/vercel/next.js/raw/canary/test/integration/url/public/vercel.png?_=image'
import logo from 'https://github.com/vercel/next.js/raw/next-15-5/test/integration/url/public/vercel.png?_=image'

export default () => (
<div>
Expand Down
2 changes: 1 addition & 1 deletion test/integration/url-imports/pages/ssg.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import value from 'http://localhost:12345/value1.js'

const url = new URL(
'https://github.com/vercel/next.js/raw/canary/test/integration/url/public/vercel.png?_=ssg',
'https://github.com/vercel/next.js/raw/next-15-5/test/integration/url/public/vercel.png?_=ssg',
import.meta.url
)

Expand Down
2 changes: 1 addition & 1 deletion test/integration/url-imports/pages/ssr.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import value from 'http://localhost:12345/value2.js'

const url = new URL(
'https://github.com/vercel/next.js/raw/canary/test/integration/url/public/vercel.png?_=ssr',
'https://github.com/vercel/next.js/raw/next-15-5/test/integration/url/public/vercel.png?_=ssr',
import.meta.url
)

Expand Down
2 changes: 1 addition & 1 deletion test/integration/url-imports/pages/static.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import value from 'http://localhost:12345/value3.js'

const url = new URL(
'https://github.com/vercel/next.js/raw/canary/test/integration/url/public/vercel.png?_=static',
'https://github.com/vercel/next.js/raw/next-15-5/test/integration/url/public/vercel.png?_=static',
import.meta.url
)

Expand Down
Loading