From a5c97860268dcbeb2a87897acf6ecd8d23eed38a Mon Sep 17 00:00:00 2001 From: Peter Siska <63866+peschee@users.noreply.github.com> Date: Tue, 15 Aug 2023 15:20:26 +0200 Subject: [PATCH 1/2] Fix NPMDIR config --- docs/pages/getting-started/installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/pages/getting-started/installation.md b/docs/pages/getting-started/installation.md index 8cae5c29ee..0dbef39879 100644 --- a/docs/pages/getting-started/installation.md +++ b/docs/pages/getting-started/installation.md @@ -187,7 +187,7 @@ import '@shoelace-style/shoelace/%NPMDIR%/components/rating/rating.js'; import { setBasePath } from '@shoelace-style/shoelace/%NPMDIR%/utilities/base-path.js'; // Set the base path to the folder you copied Shoelace's assets to -setBasePath('/path/to/shoelace/%NPMDIR% +setBasePath('/path/to/shoelace/%NPMDIR%') // , , , and are ready to use! ``` From 6fd6cccdc0e752c1e72031f64451acb0528de06a Mon Sep 17 00:00:00 2001 From: Peter Siska <63866+peschee@users.noreply.github.com> Date: Tue, 15 Aug 2023 15:22:56 +0200 Subject: [PATCH 2/2] Add missing semi --- docs/pages/getting-started/installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/pages/getting-started/installation.md b/docs/pages/getting-started/installation.md index 0dbef39879..96bf2d0cf1 100644 --- a/docs/pages/getting-started/installation.md +++ b/docs/pages/getting-started/installation.md @@ -187,7 +187,7 @@ import '@shoelace-style/shoelace/%NPMDIR%/components/rating/rating.js'; import { setBasePath } from '@shoelace-style/shoelace/%NPMDIR%/utilities/base-path.js'; // Set the base path to the folder you copied Shoelace's assets to -setBasePath('/path/to/shoelace/%NPMDIR%') +setBasePath('/path/to/shoelace/%NPMDIR%'); // , , , and are ready to use! ```