diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 3f2fe93edb8..9b30761c27f 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -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.
diff --git a/README.md b/README.md
index de18580cf06..22ec9eae7d1 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,5 @@
-
+
@@ -56,8 +56,8 @@
Links
-- 📘 [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)
diff --git a/docs/markdown/reference/starter-templates/README.md b/docs/markdown/reference/starter-templates/README.md
index c60fd542c2f..b2f641f7fb0 100644
--- a/docs/markdown/reference/starter-templates/README.md
+++ b/docs/markdown/reference/starter-templates/README.md
@@ -47,7 +47,7 @@ tags to load the required JavaScript and CSS in your page.
For more information visit our website
- More Info
+ More Info
{
webTypes.contributions.html['vue-bootstrap-icons'] = iconNames.map(name => ({
name,
icon: `${svgPrefix}${svgs[name]}`,
- '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]}`,
- '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
diff --git a/scripts/icons.scss b/scripts/icons.scss
index 5dfd2364c07..4a80f535d30 100644
--- a/scripts/icons.scss
+++ b/scripts/icons.scss
@@ -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
diff --git a/scripts/index.scss b/scripts/index.scss
index 9eb7f3fd3a7..07c92caab0f 100644
--- a/scripts/index.scss
+++ b/scripts/index.scss
@@ -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
diff --git a/src/utils/plugins.js b/src/utils/plugins.js
index 28e6c22e155..09e792bc8a3 100644
--- a/src/utils/plugins.js
+++ b/src/utils/plugins.js
@@ -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 => {