Skip to content

docs: update documentation links to use new GitHub pages URL #7245

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
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
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
## Playground & Issue reports

If you want to play with BootstrapVue components without any local setup just head to our
[Online Playground](https://bootstrap-vue.org/play) and you can interactively play and test
[Online Playground](https://bootstrap-vue.github.io/bootstrap-vue/play) and you can interactively play and test
components with a fresh Vue instance. If you want to keep your changes or make PRs reporting a
component's misbehaviour you can save them to _CodePen_, _CodeSandbox_ or _JSFiddle_ and provide
that link in issues.
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<p align="center">
<a href="https://bootstrap-vue.org">
<a href="https://bootstrap-vue.github.io/bootstrap-vue">
<img src="https://github.com/bootstrap-vue/bootstrap-vue/raw/master/static/banner.png" width="300">
</a>
</p>
Expand Down Expand Up @@ -56,8 +56,8 @@

<h2 align="center">Links</h2>

- 📘 [Documentation](https://bootstrap-vue.org)
- 🔨 [Release Notes](https://bootstrap-vue.org/docs/reference/changelog)
- 📘 [Documentation](https://bootstrap-vue.github.io/bootstrap-vue)
- 🔨 [Release Notes](https://bootstrap-vue.github.io/bootstrap-vue/docs/reference/changelog)
- 💬 [Discord Chat](https://discord.gg/j2Mtcny)
- 🐦 [Twitter](https://twitter.com/BootstrapVue)

Expand Down
2 changes: 1 addition & 1 deletion docs/markdown/reference/starter-templates/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ tags to load the required JavaScript and CSS in your page.
<b-container>
<b-jumbotron header="BootstrapVue" lead="Bootstrap v4 Components for Vue.js 2">
<p>For more information visit our website</p>
<b-btn variant="primary" href="https://bootstrap-vue.org/">More Info</b-btn>
<b-btn variant="primary" href="https://bootstrap-vue.github.io/bootstrap-vue/">More Info</b-btn>
</b-jumbotron>

<b-form-group
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"style": "./dist/bootstrap-vue.css",
"license": "MIT",
"repository": "bootstrap-vue/bootstrap-vue",
"homepage": "https://bootstrap-vue.org",
"homepage": "https://bootstrap-vue.github.io/bootstrap-vue",
"types": "./src/index.d.ts",
"web-types": "./dist/web-types.json",
"vetur": {
Expand Down
4 changes: 2 additions & 2 deletions scripts/create-web-types.js
Original file line number Diff line number Diff line change
Expand Up @@ -404,13 +404,13 @@ const processIconGroup = groupSlug => {
webTypes.contributions.html['vue-bootstrap-icons'] = iconNames.map(name => ({
name,
icon: `${svgPrefix}${svgs[name]}</svg>`,
'doc-url': 'https://bootstrap-vue.org/docs/icons/#icons-1'
'doc-url': 'https://bootstrap-vue.github.io/bootstrap-vue/docs/icons/#icons-1'
}))

webTypes.contributions.html['vue-bootstrap-icons-kebabized'] = iconNames.map(name => ({
name: kebabCase(name),
icon: `${svgPrefix}${svgs[name]}</svg>`,
'doc-url': 'https://bootstrap-vue.org/docs/icons/#icons-1'
'doc-url': 'https://bootstrap-vue.github.io/bootstrap-vue/docs/icons/#icons-1'
}))

// Process each regular component
Expand Down
2 changes: 1 addition & 1 deletion scripts/icons.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* BootstrapVue Icons Custom CSS (https://bootstrap-vue.org)
* BootstrapVue Icons Custom CSS (https://bootstrap-vue.github.io/bootstrap-vue)
*/

// Include Bootstrap functions, variables, and mixins
Expand Down
2 changes: 1 addition & 1 deletion scripts/index.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* BootstrapVue Custom CSS (https://bootstrap-vue.org)
* BootstrapVue Custom CSS (https://bootstrap-vue.github.io/bootstrap-vue)
*/

// Include Bootstrap functions, variables, and mixins
Expand Down
2 changes: 1 addition & 1 deletion src/utils/plugins.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const checkMultipleVue = (() => {
const MULTIPLE_VUE_WARNING = [
'Multiple instances of Vue detected!',
'You may need to set up an alias for Vue in your bundler config.',
'See: https://bootstrap-vue.org/docs#using-module-bundlers'
'See: https://bootstrap-vue.github.io/bootstrap-vue/docs#using-module-bundlers'
].join('\n')

return Vue => {
Expand Down