Skip to content

Commit bc59637

Browse files
kazuponyyx990803
authored andcommitted
chore: fix links (#1540)
1 parent 182f3b7 commit bc59637

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

packages/@vue/cli-plugin-e2e-cypress/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ We've pre-configured Cypress to place most of the e2e testing related files unde
3636

3737
## Environment Variables
3838

39-
Cypress doesn't load .env files for your test files the same way as `vue-cli` does for your [application code](https://github.com/vuejs/vue-cli/blob/dev/docs/env.md#using-env-variables-in-client-side-code). Cypress supports a few ways to [define env variables](https://docs.cypress.io/guides/guides/environment-variables.html#) but the easiest one is to use .json files (either `cypress.json` or `cypress.env.json`) to define environment variables. Keep in mind those variables are accessible via `Cypress.env` function instead of regular `process.env` object.
39+
Cypress doesn't load .env files for your test files the same way as `vue-cli` does for your [application code](https://cli.vuejs.org/guide/mode-and-env.html#using-env-variables-in-client-side-code). Cypress supports a few ways to [define env variables](https://docs.cypress.io/guides/guides/environment-variables.html#) but the easiest one is to use .json files (either `cypress.json` or `cypress.env.json`) to define environment variables. Keep in mind those variables are accessible via `Cypress.env` function instead of regular `process.env` object.
4040

4141
## Installing in an Already Created Project
4242

packages/@vue/cli-service/generator/template/src/components/HelloWorld.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<p>
55
For guide and recipes on how to configure / customize this project,<br>
66
check out the
7-
<a href="https://github.com/vuejs/vue-cli/tree/dev/docs" target="_blank">vue-cli documentation</a>.
7+
<a href="https://cli.vuejs.org" target="_blank">vue-cli documentation</a>.
88
</p>
99
<h3>Installed CLI Plugins</h3>
1010
<ul>

packages/@vue/cli-ui/src/components/StatusBar.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ export default {
143143
144144
onTranslateClick () {
145145
const win = window.open(
146-
'https://github.com/vuejs/vue-cli/tree/dev/docs/localization.md',
146+
'https://cli.vuejs.org/dev-guide/ui-plugin-dev.html#localization',
147147
'_blank'
148148
)
149149
win.focus()

packages/@vue/cli-ui/src/views/About.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
<div class="links vue-ui-grid default-gap">
1414
<VueButton href="https://github.com/vuejs/vue-cli" target="_blank">Repository</VueButton>
15-
<VueButton href="https://github.com/vuejs/vue-cli/tree/dev/docs#table-of-contents" target="_blank">Documentation</VueButton>
15+
<VueButton href="https://cli.vuejs.org" target="_blank">Documentation</VueButton>
1616
<VueButton href="https://vuejs.org/v2/guide/" target="_blank">Vue.js Guide</VueButton>
1717
<VueButton href="https://vuejs.org/v2/api/" target="_blank">Vue.js API reference</VueButton>
1818
<VueButton href="https://forum.vuejs.org/" target="_blank">Vue.js Forums</VueButton>

packages/@vue/cli/lib/promptModules/unit.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ module.exports = cli => {
44
value: 'unit',
55
short: 'Unit',
66
description: 'Add a Unit Testing solution like Jest or Mocha',
7-
link: 'https://github.com/vuejs/vue-cli/tree/dev/docs#unit-testing',
7+
link: 'https://cli.vuejs.org/config/#unit-testing',
88
plugins: ['unit-jest', 'unit-mocha']
99
})
1010

0 commit comments

Comments
 (0)