Skip to content

Commit b259786

Browse files
committed
docs(config): fix missing base
1 parent 6de06db commit b259786

File tree

9 files changed

+6
-7
lines changed

9 files changed

+6
-7
lines changed

.github/workflows/beta.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ jobs:
104104
npm run docs:build
105105
touch docs/.vitepress/dist/.nojekyll
106106
env:
107+
BASE_URL: /nuxt-custom-elements/
107108
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
108109
- name: Archive Production Artifact
109110
uses: actions/upload-artifact@v4
@@ -130,5 +131,4 @@ jobs:
130131
with:
131132
github_token: ${{ secrets.GITHUB_TOKEN }}
132133
publish_dir: public
133-
cname: nuxt-custom-elements.grabarzundpartner.dev
134134
keep_files: true

.husky/.gitignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

.husky/commit-msg

100755100644
File mode changed.

.husky/pre-commit

100755100644
File mode changed.

.husky/pre-push

100755100644
File mode changed.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
[![License][license-src]][license-href]
3838

3939
- [  **Release Notes**](./CHANGELOG.md)
40-
- [📖   **Documentation**](https://nuxt-custom-elements.grabarzundpartner.dev/)
40+
- [📖   **Documentation**](https://grabarzundpartner.github.io/nuxt-custom-elements/)
4141
- [👁   **Preview**](https://grabarzundpartner.github.io/nuxt-custom-elements-example/)
4242

4343
Nuxt Custom-Elements allows you to export your existing project components as custom elements for integration into external pages.
@@ -47,7 +47,7 @@ Nuxt Custom-Elements allows you to export your existing project components as cu
4747
- Use Vue with Shadow DOM 🥷
4848
- Export components as widgets
4949

50-
📖   [Learn more in the documentation](https://nuxt-custom-elements.grabarzundpartner.dev/)
50+
📖   [Learn more in the documentation](https://grabarzundpartner.github.io/nuxt-custom-elements/)
5151

5252
## Development
5353

docs/.vitepress/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export default defineConfig(() => ({
5959
},
6060

6161
sitemap: {
62-
hostname: 'https://nuxt-custom-elements.grabarzundpartner.dev'
62+
hostname: 'https://grabarzundpartner.github.io/nuxt-custom-elements/'
6363
}
6464
}));
6565

docs/src/public/CNAME

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/src/v1/index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ Nuxt Custom-Elements allows you to export your existing project components as cu
2020
For cross-browser [compatibility](https://github.com/ungap/custom-elements#compatibility) (IE11+) the `client` build uses the Polyfill [custom-elements](https://github.com/ungap/custom-elements)
2121

2222
::: warning
23-
Polyfill not included in the `modern` build, optional include by option `modernPolyfill` ([Learn more](https://nuxt-custom-elements.grabarzundpartner.dev/options/#modernpolyfill)).
23+
Polyfill not included in the `modern` build, optional include by option `modernPolyfill`.
24+
[Learn more](/v1/guide/options.html#modernpolyfill)
2425
:::
2526

2627
## Preview

0 commit comments

Comments
 (0)