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
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The following code shows you how to specify a 96px product icon by brand using t
// Sample code for using office-ui-fabric-core version 11.1.0 to display an Word 96x96px Icon
<link
rel="stylesheet"
href="https://res-1.cdn.office.net/files/fabric-cdn-prod_20230815.002/office-ui-fabric-core/11.1.0/css/fabric.css"
href="https://res-1.cdn.office.net/files/fabric-cdn-prod_20251008.001/office-ui-fabric-core/11.1.0/css/fabric.css"
/>

<div class="ms-BrandIcon--icon96 ms-BrandIcon--word"></div>
Expand All @@ -16,7 +16,7 @@ This following code shows you how to specify a 48px product icon by brand using

```jsx
<img
src="https://res-1.cdn.office.net/files/fabric-cdn-prod_20230815.002/assets/brand-icons/product/svg/word_48x1.svg"
src="https://res-1.cdn.office.net/files/fabric-cdn-prod_20251008.001/assets/brand-icons/product/svg/word_48x1.svg"
width="48"
height="48"
alt="Word product icon"
Expand Down
2 changes: 1 addition & 1 deletion apps/public-docsite/src/utilities/cdn.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
const version = '20230815.002';
const version = '20251008.001';

export const cdnUrl = `https://res-1.cdn.office.net/files/fabric-cdn-prod_${version}`;