We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8e8fb1 commit a2e13caCopy full SHA for a2e13ca
src/theme/Admonition/index.js
@@ -3,6 +3,7 @@ import clsx from 'clsx';
3
import {ThemeClassNames} from '@docusaurus/theme-common';
4
import Translate from '@docusaurus/Translate';
5
import styles from './styles.module.css';
6
+import useBaseUrl from '@docusaurus/useBaseUrl';
7
function NoteIcon() {
8
return (
9
<svg viewBox="0 0 14 16">
@@ -55,7 +56,7 @@ function WarningIcon() {
55
56
}
57
function SumoIcon() {
58
- <img src="/img/reuse/sumo-square.png" width="25"/>
59
+ <img src={useBaseUrl('img/reuse/sumo-square.png')} width="25"/>
60
)
61
62
// eslint-disable-next-line @typescript-eslint/consistent-indexed-object-style
0 commit comments