mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-24 14:36:59 +02:00
1 line
No EOL
10 KiB
JavaScript
1 line
No EOL
10 KiB
JavaScript
"use strict";(self.webpackChunkwebsite=self.webpackChunkwebsite||[]).push([[84728],{71793:(e,s,t)=>{t.r(s),t.d(s,{assets:()=>c,contentTitle:()=>r,default:()=>h,frontMatter:()=>a,metadata:()=>o,toc:()=>l});var n=t(24246),i=t(71670);const a={description:"Static assets are the non-code files that are directly copied to the build output. Learn about how they are handled and what the best practices of using static assets are."},r="Static Assets",o={id:"static-assets",title:"Static Assets",description:"Static assets are the non-code files that are directly copied to the build output. Learn about how they are handled and what the best practices of using static assets are.",source:"@site/docs/static-assets.mdx",sourceDirName:".",slug:"/static-assets",permalink:"/docs/static-assets",draft:!1,unlisted:!1,editUrl:"https://github.com/facebook/docusaurus/edit/main/website/docs/static-assets.mdx",tags:[],version:"current",lastUpdatedBy:"Tatsunori Uchino",lastUpdatedAt:1718970228e3,frontMatter:{description:"Static assets are the non-code files that are directly copied to the build output. Learn about how they are handled and what the best practices of using static assets are."},sidebar:"docs",previous:{title:"Swizzling",permalink:"/docs/swizzling"},next:{title:"Search",permalink:"/docs/search"}},c={},l=[{value:"Referencing your static asset",id:"referencing-your-static-asset",level:2},{value:"In JSX",id:"in-jsx",level:3},{value:"In Markdown",id:"in-markdown",level:3},{value:"In CSS",id:"in-css",level:3},{value:"Caveats",id:"caveats",level:2}];function d(e){const s={a:"a",admonition:"admonition",code:"code",h1:"h1",h2:"h2",h3:"h3",li:"li",p:"p",pre:"pre",strong:"strong",ul:"ul",...(0,i.a)(),...e.components};return(0,n.jsxs)(n.Fragment,{children:[(0,n.jsx)(s.h1,{id:"static-assets",children:"Static Assets"}),"\n",(0,n.jsx)(s.p,{children:"Static assets are the non-code files that are directly copied to the build output. They include images, stylesheets, favicons, fonts, etc."}),"\n",(0,n.jsxs)(s.p,{children:["By default, you are suggested to put these assets in the ",(0,n.jsx)(s.code,{children:"static"})," folder. Every file you put into ",(0,n.jsx)(s.strong,{children:"that directory will be copied"})," into the root of the generated ",(0,n.jsx)(s.code,{children:"build"})," folder with the directory hierarchy preserved. E.g. if you add a file named ",(0,n.jsx)(s.code,{children:"sun.jpg"})," to the static folder, it will be copied to ",(0,n.jsx)(s.code,{children:"build/sun.jpg"}),"."]}),"\n",(0,n.jsx)(s.p,{children:"This means that:"}),"\n",(0,n.jsxs)(s.ul,{children:["\n",(0,n.jsxs)(s.li,{children:["for site ",(0,n.jsx)(s.code,{children:"baseUrl: '/'"}),", the image ",(0,n.jsx)(s.code,{children:"/static/img/docusaurus.png"})," will be served at ",(0,n.jsx)(s.code,{children:"/img/docusaurus.png"}),"."]}),"\n",(0,n.jsxs)(s.li,{children:["for site ",(0,n.jsx)(s.code,{children:"baseUrl: '/subpath/'"}),", the image ",(0,n.jsx)(s.code,{children:"/static/img/docusaurus.png"})," will be served at ",(0,n.jsx)(s.code,{children:"/subpath/img/docusaurus.png"}),"."]}),"\n"]}),"\n",(0,n.jsxs)(s.p,{children:["You can customize the static directory sources in ",(0,n.jsx)(s.code,{children:"docusaurus.config.js"}),". For example, we can add ",(0,n.jsx)(s.code,{children:"public"})," as another possible path:"]}),"\n",(0,n.jsx)(s.pre,{children:(0,n.jsx)(s.code,{className:"language-js",metastring:'title="docusaurus.config.js"',children:"export default {\n title: 'My site',\n staticDirectories: ['public', 'static'],\n // ...\n};\n"})}),"\n",(0,n.jsxs)(s.p,{children:["Now, all files in ",(0,n.jsx)(s.code,{children:"public"})," as well as ",(0,n.jsx)(s.code,{children:"static"})," will be copied to the build output."]}),"\n",(0,n.jsx)(s.h2,{id:"referencing-your-static-asset",children:"Referencing your static asset"}),"\n",(0,n.jsx)(s.h3,{id:"in-jsx",children:"In JSX"}),"\n",(0,n.jsxs)(s.p,{children:["In JSX, you can reference assets from the ",(0,n.jsx)(s.code,{children:"static"})," folder in your code using absolute URLs, but this is not ideal because changing the site ",(0,n.jsx)(s.code,{children:"baseUrl"})," will ",(0,n.jsx)(s.strong,{children:"break those links"}),". For the image ",(0,n.jsx)(s.code,{children:'<img src="/img/docusaurus.png" />'})," served at ",(0,n.jsx)(s.code,{children:"https://example.com/test"}),", the browser will try to resolve it from the URL root, i.e. as ",(0,n.jsx)(s.code,{children:"https://example.com/img/docusaurus.png"}),", which will fail because it's actually served at ",(0,n.jsx)(s.code,{children:"https://example.com/test/img/docusaurus.png"}),"."]}),"\n",(0,n.jsxs)(s.p,{children:["You can ",(0,n.jsx)(s.code,{children:"import()"})," or ",(0,n.jsx)(s.code,{children:"require()"})," the static asset (recommended), or use the ",(0,n.jsx)(s.code,{children:"useBaseUrl"})," utility function: both prepend the ",(0,n.jsx)(s.code,{children:"baseUrl"})," to paths for you."]}),"\n",(0,n.jsx)(s.p,{children:"Examples:"}),"\n",(0,n.jsx)(s.pre,{children:(0,n.jsx)(s.code,{className:"language-jsx",metastring:'title="MyComponent.js"',children:"import DocusaurusImageUrl from '@site/static/img/docusaurus.png';\n\n<img src={DocusaurusImageUrl} />;\n"})}),"\n",(0,n.jsx)(s.pre,{children:(0,n.jsx)(s.code,{className:"language-jsx",metastring:'title="MyComponent.js"',children:"<img src={require('@site/static/img/docusaurus.png').default} />\n"})}),"\n",(0,n.jsx)(s.pre,{children:(0,n.jsx)(s.code,{className:"language-jsx",metastring:'title="MyComponent.js"',children:"import useBaseUrl from '@docusaurus/useBaseUrl';\n\n<img src={useBaseUrl('/img/docusaurus.png')} />;\n"})}),"\n",(0,n.jsx)(s.p,{children:"You can also import SVG files: they will be transformed into React components."}),"\n",(0,n.jsx)(s.pre,{children:(0,n.jsx)(s.code,{className:"language-jsx",metastring:'title="MyComponent.js"',children:'import DocusaurusLogoWithKeytar from \'@site/static/img/docusaurus_keytar.svg\';\n\n<DocusaurusLogoWithKeytar title="Docusaurus Logo" className="logo" />;\n'})}),"\n",(0,n.jsx)(s.h3,{id:"in-markdown",children:"In Markdown"}),"\n",(0,n.jsxs)(s.p,{children:["In Markdown, you can stick to using absolute paths when writing links or images ",(0,n.jsx)(s.strong,{children:"in Markdown syntax"})," because Docusaurus handles them as ",(0,n.jsx)(s.code,{children:"require"})," calls instead of URLs when parsing the Markdown. See ",(0,n.jsx)(s.a,{href:"/docs/markdown-features/assets",children:"Markdown static assets"}),"."]}),"\n",(0,n.jsx)(s.pre,{children:(0,n.jsx)(s.code,{className:"language-md",children:"You write a link like this: [Download this document](/files/note.docx)\n\nDocusaurus changes that to: <a href={require('static/files/note.docx')}>Download this document</a>\n"})}),"\n",(0,n.jsx)(s.admonition,{title:"use Markdown syntax",type:"warning",children:(0,n.jsxs)(s.p,{children:["Docusaurus will only parse links that are in Markdown syntax. If your asset references are using the JSX tag ",(0,n.jsx)(s.code,{children:"<a>"})," / ",(0,n.jsx)(s.code,{children:"<img>"}),", nothing will be done."]})}),"\n",(0,n.jsx)(s.h3,{id:"in-css",children:"In CSS"}),"\n",(0,n.jsxs)(s.p,{children:["In CSS, the ",(0,n.jsx)(s.code,{children:"url()"})," function is commonly used to reference assets like fonts and images. To reference a static asset, use absolute paths:"]}),"\n",(0,n.jsx)(s.pre,{children:(0,n.jsx)(s.code,{className:"language-css",children:"@font-face {\n font-family: 'Caroline';\n src: url('/font/Caroline.otf');\n}\n"})}),"\n",(0,n.jsxs)(s.p,{children:["The ",(0,n.jsx)(s.code,{children:"static/font/Caroline.otf"})," asset will be loaded by the bundler."]}),"\n",(0,n.jsxs)(s.admonition,{title:"important takeaway",type:"warning",children:[(0,n.jsxs)(s.p,{children:["One important takeaway: ",(0,n.jsx)(s.strong,{children:"never hardcode your base URL!"})," The base URL is considered an implementation detail and should be easily changeable. All paths, even when they look like URL slugs, are actually file paths."]}),(0,n.jsx)(s.p,{children:"If you find the URL slug mental model more understandable, here's a rule of thumb:"}),(0,n.jsxs)(s.ul,{children:["\n",(0,n.jsxs)(s.li,{children:["Pretend you have a base URL like ",(0,n.jsx)(s.code,{children:"/test/"})," when writing JSX so you don't use an absolute URL path like ",(0,n.jsx)(s.code,{children:'src="/img/thumbnail.png"'})," but instead ",(0,n.jsx)(s.code,{children:"require"})," the asset."]}),"\n",(0,n.jsxs)(s.li,{children:["Pretend it's ",(0,n.jsx)(s.code,{children:"/"})," when writing Markdown or CSS so you always use absolute paths without the base URL."]}),"\n"]})]}),"\n",(0,n.jsx)(s.h2,{id:"caveats",children:"Caveats"}),"\n",(0,n.jsx)(s.p,{children:"Keep in mind that:"}),"\n",(0,n.jsxs)(s.ul,{children:["\n",(0,n.jsxs)(s.li,{children:["By default, none of the files in the ",(0,n.jsx)(s.code,{children:"static"})," folder will be post-processed, hashed, or minified.","\n",(0,n.jsxs)(s.ul,{children:["\n",(0,n.jsxs)(s.li,{children:["However, as we've demonstrated above, we are usually able to convert them to ",(0,n.jsx)(s.code,{children:"require"})," calls for you so they do get processed. This is good for aggressive caching and better user experience."]}),"\n"]}),"\n"]}),"\n",(0,n.jsx)(s.li,{children:"Missing files referenced via hard-coded absolute paths will not be detected at compilation time and will result in a 404 error."}),"\n",(0,n.jsxs)(s.li,{children:["By default, GitHub Pages runs published files through ",(0,n.jsx)(s.a,{href:"https://jekyllrb.com/",children:"Jekyll"}),". Since Jekyll will discard any files that begin with ",(0,n.jsx)(s.code,{children:"_"}),", it is recommended that you disable Jekyll by adding an empty file named ",(0,n.jsx)(s.code,{children:".nojekyll"})," file to your ",(0,n.jsx)(s.code,{children:"static"})," directory if you are using GitHub pages for hosting."]}),"\n"]})]})}function h(e={}){const{wrapper:s}={...(0,i.a)(),...e.components};return s?(0,n.jsx)(s,{...e,children:(0,n.jsx)(d,{...e})}):d(e)}},71670:(e,s,t)=>{t.d(s,{Z:()=>o,a:()=>r});var n=t(27378);const i={},a=n.createContext(i);function r(e){const s=n.useContext(a);return n.useMemo((function(){return"function"==typeof e?e(s):{...s,...e}}),[s,e])}function o(e){let s;return s=e.disableParentContext?"function"==typeof e.components?e.components(i):e.components||i:r(e.components),n.createElement(a.Provider,{value:s},e.children)}}}]); |