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
17 changes: 9 additions & 8 deletions fixtures/ssg-netlify-by-project-id/app/constants.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,13 @@ export const imageLoader = (props) => {
}

// https://docs.netlify.com/image-cdn/overview/
return (
"/.netlify/images?url=" +
encodeURIComponent(props.src) +
"&w=" +
props.width +
"&q=" +
props.quality
);
const searchParams = new URLSearchParams();
searchParams.set("url", props.src);
searchParams.set("w", props.width.toString());
if (props.height) {
searchParams.set("h", props.height.toString());
}
searchParams.set("q", props.quality.toString());
// fit=contain by default
return `/.netlify/images?${searchParams}`;
};
2 changes: 1 addition & 1 deletion fixtures/ssg-netlify-by-project-id/pages/index/+Head.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export const Head = ({ data }: { data: PageContext["data"] }) => {
<link
rel="icon"
href={imageLoader({
src: favIconAsset.name,
src: `${assetBaseUrl}${favIconAsset.name}`,
// width,height must be multiple of 48 https://developers.google.com/search/docs/appearance/favicon-in-search
width: 144,
height: 144,
Expand Down
2 changes: 1 addition & 1 deletion fixtures/ssg/pages/another-page/+Head.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export const Head = ({ data }: { data: PageContext["data"] }) => {
<link
rel="icon"
href={imageLoader({
src: favIconAsset.name,
src: `${assetBaseUrl}${favIconAsset.name}`,
// width,height must be multiple of 48 https://developers.google.com/search/docs/appearance/favicon-in-search
width: 144,
height: 144,
Expand Down
2 changes: 1 addition & 1 deletion fixtures/ssg/pages/index/+Head.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export const Head = ({ data }: { data: PageContext["data"] }) => {
<link
rel="icon"
href={imageLoader({
src: favIconAsset.name,
src: `${assetBaseUrl}${favIconAsset.name}`,
// width,height must be multiple of 48 https://developers.google.com/search/docs/appearance/favicon-in-search
width: 144,
height: 144,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ export const links: LinksFunction = () => {
result.push({
rel: "icon",
href: imageLoader({
src: favIconAsset.name,
src: `${assetBaseUrl}${favIconAsset.name}`,
// width,height must be multiple of 48 https://developers.google.com/search/docs/appearance/favicon-in-search
width: 144,
height: 144,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ export const links: LinksFunction = () => {
result.push({
rel: "icon",
href: imageLoader({
src: favIconAsset.name,
src: `${assetBaseUrl}${favIconAsset.name}`,
// width,height must be multiple of 48 https://developers.google.com/search/docs/appearance/favicon-in-search
width: 144,
height: 144,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ export const links: LinksFunction = () => {
result.push({
rel: "icon",
href: imageLoader({
src: favIconAsset.name,
src: `${assetBaseUrl}${favIconAsset.name}`,
// width,height must be multiple of 48 https://developers.google.com/search/docs/appearance/favicon-in-search
width: 144,
height: 144,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ export const links: LinksFunction = () => {
result.push({
rel: "icon",
href: imageLoader({
src: favIconAsset.name,
src: `${assetBaseUrl}${favIconAsset.name}`,
// width,height must be multiple of 48 https://developers.google.com/search/docs/appearance/favicon-in-search
width: 144,
height: 144,
Expand Down
2 changes: 1 addition & 1 deletion fixtures/webstudio-custom-template/app/routes/_index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ export const links: LinksFunction = () => {
result.push({
rel: "icon",
href: imageLoader({
src: favIconAsset.name,
src: `${assetBaseUrl}${favIconAsset.name}`,
// width,height must be multiple of 48 https://developers.google.com/search/docs/appearance/favicon-in-search
width: 144,
height: 144,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,13 @@ export const imageLoader = (props) => {
}

// https://docs.netlify.com/image-cdn/overview/
return (
"/.netlify/images?url=" +
encodeURIComponent(props.src) +
"&w=" +
props.width +
"&q=" +
props.quality
);
const searchParams = new URLSearchParams();
searchParams.set("url", props.src);
searchParams.set("w", props.width.toString());
if (props.height) {
searchParams.set("h", props.height.toString());
}
searchParams.set("q", props.quality.toString());
// fit=contain by default
return `/.netlify/images?${searchParams}`;
};
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ export const links: LinksFunction = () => {
result.push({
rel: "icon",
href: imageLoader({
src: favIconAsset.name,
src: `${assetBaseUrl}${favIconAsset.name}`,
// width,height must be multiple of 48 https://developers.google.com/search/docs/appearance/favicon-in-search
width: 144,
height: 144,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ export const links: LinksFunction = () => {
result.push({
rel: "icon",
href: imageLoader({
src: favIconAsset.name,
src: `${assetBaseUrl}${favIconAsset.name}`,
// width,height must be multiple of 48 https://developers.google.com/search/docs/appearance/favicon-in-search
width: 144,
height: 144,
Expand Down
16 changes: 9 additions & 7 deletions fixtures/webstudio-remix-netlify-functions/.webstudio/data.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"build": {
"id": "a2e8de30-03d5-4514-a3a6-406b3266a3af",
"id": "f565d527-32e7-4731-bc71-aca9e9574587",
"projectId": "d845c167-ea07-4875-b08d-83e97c09dcce",
"version": 38,
"createdAt": "2024-07-29T12:50:07.515+00:00",
"updatedAt": "2024-07-29T12:50:07.515+00:00",
"version": 43,
"createdAt": "2025-01-04T11:01:50.091+00:00",
"updatedAt": "2025-01-04T11:01:50.091+00:00",
"pages": {
"meta": {
"siteName": "",
"faviconAssetId": "",
"faviconAssetId": "d0974db9300c1a3b0fb8b291dd9fabd45ad136478908394280af2f7087e3aecd",
"code": ""
},
"homePage": {
Expand Down Expand Up @@ -408,8 +408,10 @@
]
],
"deployment": {
"domains": [],
"projectDomain": "cli-basic-test-d0osr"
"destination": "saas",
"domains": ["cli-basic-test-d0osr"],
"assetsDomain": "cli-basic-test-d0osr",
"excludeWstdDomainFromSearch": false
}
},
"page": {
Expand Down

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

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

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

17 changes: 9 additions & 8 deletions fixtures/webstudio-remix-netlify-functions/app/constants.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,13 @@ export const imageLoader = (props) => {
}

// https://docs.netlify.com/image-cdn/overview/
return (
"/.netlify/images?url=" +
encodeURIComponent(props.src) +
"&w=" +
props.width +
"&q=" +
props.quality
);
const searchParams = new URLSearchParams();
searchParams.set("url", props.src);
searchParams.set("w", props.width.toString());
if (props.height) {
searchParams.set("h", props.height.toString());
}
searchParams.set("q", props.quality.toString());
// fit=contain by default
return `/.netlify/images?${searchParams}`;
};
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ export const links: LinksFunction = () => {
result.push({
rel: "icon",
href: imageLoader({
src: favIconAsset.name,
src: `${assetBaseUrl}${favIconAsset.name}`,
// width,height must be multiple of 48 https://developers.google.com/search/docs/appearance/favicon-in-search
width: 144,
height: 144,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ export const links: LinksFunction = () => {
result.push({
rel: "icon",
href: imageLoader({
src: favIconAsset.name,
src: `${assetBaseUrl}${favIconAsset.name}`,
// width,height must be multiple of 48 https://developers.google.com/search/docs/appearance/favicon-in-search
width: 144,
height: 144,
Expand Down
4 changes: 2 additions & 2 deletions fixtures/webstudio-remix-netlify-functions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
"scripts": {
"build": "remix vite:build",
"dev": "remix vite:dev",
"start": "netlify serve",
"start": "npx netlify-cli serve",
"typecheck": "tsc",
"cli": "NODE_OPTIONS='--conditions=webstudio --import=tsx' webstudio",
"fixtures:link": "pnpm cli link --link https://p-d845c167-ea07-4875-b08d-83e97c09dcce-dot-${BUILDER_HOST:-main.development.webstudio.is}'?authToken=e9d1343f-9298-4fd3-a66e-f89a5af2dd93'",
"fixtures:sync": "pnpm cli sync --buildId a2e8de30-03d5-4514-a3a6-406b3266a3af && pnpm prettier --write ./.webstudio/",
"fixtures:sync": "pnpm cli sync --buildId f565d527-32e7-4731-bc71-aca9e9574587 && pnpm prettier --write ./.webstudio/",
"fixtures:build": "pnpm cli build --template netlify-functions --template internal && pnpm prettier --write ./app/ ./package.json ./tsconfig.json"
},
"dependencies": {
Expand Down
13 changes: 5 additions & 8 deletions fixtures/webstudio-remix-vercel/app/constants.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,9 @@ export const imageLoader = (props) => {
}

// https://vercel.com/blog/build-your-own-web-framework#automatic-image-optimization
return (
"/_vercel/image?url=" +
encodeURIComponent(props.src) +
"&w=" +
props.width +
"&q=" +
props.quality
);
const searchParams = new URLSearchParams();
searchParams.set("url", props.src);
searchParams.set("w", props.width.toString());
searchParams.set("q", props.quality.toString());
return `/_vercel/image?${searchParams}`;
};
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ export const links: LinksFunction = () => {
result.push({
rel: "icon",
href: imageLoader({
src: favIconAsset.name,
src: `${assetBaseUrl}${favIconAsset.name}`,
// width,height must be multiple of 48 https://developers.google.com/search/docs/appearance/favicon-in-search
width: 144,
height: 144,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ export const links: LinksFunction = () => {
result.push({
rel: "icon",
href: imageLoader({
src: favIconAsset.name,
src: `${assetBaseUrl}${favIconAsset.name}`,
// width,height must be multiple of 48 https://developers.google.com/search/docs/appearance/favicon-in-search
width: 144,
height: 144,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ export const links: LinksFunction = () => {
result.push({
rel: "icon",
href: imageLoader({
src: favIconAsset.name,
src: `${assetBaseUrl}${favIconAsset.name}`,
// width,height must be multiple of 48 https://developers.google.com/search/docs/appearance/favicon-in-search
width: 144,
height: 144,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ export const links: LinksFunction = () => {
result.push({
rel: "icon",
href: imageLoader({
src: favIconAsset.name,
src: `${assetBaseUrl}${favIconAsset.name}`,
// width,height must be multiple of 48 https://developers.google.com/search/docs/appearance/favicon-in-search
width: 144,
height: 144,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ export const links: LinksFunction = () => {
result.push({
rel: "icon",
href: imageLoader({
src: favIconAsset.name,
src: `${assetBaseUrl}${favIconAsset.name}`,
// width,height must be multiple of 48 https://developers.google.com/search/docs/appearance/favicon-in-search
width: 144,
height: 144,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ export const links: LinksFunction = () => {
result.push({
rel: "icon",
href: imageLoader({
src: favIconAsset.name,
src: `${assetBaseUrl}${favIconAsset.name}`,
// width,height must be multiple of 48 https://developers.google.com/search/docs/appearance/favicon-in-search
width: 144,
height: 144,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ export const links: LinksFunction = () => {
result.push({
rel: "icon",
href: imageLoader({
src: favIconAsset.name,
src: `${assetBaseUrl}${favIconAsset.name}`,
// width,height must be multiple of 48 https://developers.google.com/search/docs/appearance/favicon-in-search
width: 144,
height: 144,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ export const links: LinksFunction = () => {
result.push({
rel: "icon",
href: imageLoader({
src: favIconAsset.name,
src: `${assetBaseUrl}${favIconAsset.name}`,
// width,height must be multiple of 48 https://developers.google.com/search/docs/appearance/favicon-in-search
width: 144,
height: 144,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ export const links: LinksFunction = () => {
result.push({
rel: "icon",
href: imageLoader({
src: favIconAsset.name,
src: `${assetBaseUrl}${favIconAsset.name}`,
// width,height must be multiple of 48 https://developers.google.com/search/docs/appearance/favicon-in-search
width: 144,
height: 144,
Expand Down
2 changes: 1 addition & 1 deletion fixtures/webstudio-remix-vercel/app/routes/_index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ export const links: LinksFunction = () => {
result.push({
rel: "icon",
href: imageLoader({
src: favIconAsset.name,
src: `${assetBaseUrl}${favIconAsset.name}`,
// width,height must be multiple of 48 https://developers.google.com/search/docs/appearance/favicon-in-search
width: 144,
height: 144,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ export const links: LinksFunction = () => {
result.push({
rel: "icon",
href: imageLoader({
src: favIconAsset.name,
src: `${assetBaseUrl}${favIconAsset.name}`,
// width,height must be multiple of 48 https://developers.google.com/search/docs/appearance/favicon-in-search
width: 144,
height: 144,
Expand Down
Loading
Loading