Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
Fix url-imports test on 15-5
  • Loading branch information
mischnic committed Oct 16, 2025
commit 9bfba21e5f2341759b816f28b6d01e702482909c
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