Skip to content

Commit 5a47a77

Browse files
fix: update broken links in deployment.md (#669)
1 parent df85420 commit 5a47a77

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/guide/tooling/deployment.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ During development, Vue provides a lot of warnings to help you with common error
1010

1111
### Without Build Tools
1212

13-
If you are using the full build, i.e. directly including Vue via a script tag without a build tool, make sure to use the minified version for production. This can be found in the [Installation guide](installation.html#cdn).
13+
If you are using the full build, i.e. directly including Vue via a script tag without a build tool, make sure to use the minified version for production. This can be found in the [Installation guide](/guide/installation.html#cdn).
1414

1515
### With Build Tools
1616

@@ -97,7 +97,7 @@ rollup({
9797

9898
When using in-DOM templates or in-JavaScript template strings, the template-to-render-function compilation is performed on the fly. This is usually fast enough in most cases, but is best avoided if your application is performance-sensitive.
9999

100-
The easiest way to pre-compile templates is using [Single-File Components](single-file-component.html) - the associated build setups automatically performs pre-compilation for you, so the built code contains the already compiled render functions instead of raw template strings.
100+
The easiest way to pre-compile templates is using [Single-File Components](/guide/single-file-component.html) - the associated build setups automatically performs pre-compilation for you, so the built code contains the already compiled render functions instead of raw template strings.
101101

102102
If you are using Webpack, and prefer separating JavaScript and template files, you can use [vue-template-loader](https://github.com/ktsn/vue-template-loader), which also transforms the template files into JavaScript render functions during the build step.
103103

0 commit comments

Comments
 (0)