Skip to content

Commit

Permalink
chore(docs): fix internal links (#4579)
Browse files Browse the repository at this point in the history
  • Loading branch information
jay-es committed Aug 11, 2021
1 parent c8a17a2 commit ed16488
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/guide/backend-integration.md
Expand Up @@ -22,7 +22,7 @@ If you need a custom integration, you can follow the steps in this guide to conf
})
```

If you haven't disabled the [module preload polyfill](/config/#polyfillmodulepreload), you also need to import the polyfill in your entry
If you haven't disabled the [module preload polyfill](/config/#build-polyfillmodulepreload), you also need to import the polyfill in your entry

```js
// add the beginning of your app entry
Expand Down
4 changes: 2 additions & 2 deletions docs/guide/migration.md
Expand Up @@ -32,13 +32,13 @@
- `httpsOptions` has been removed. [`server.https`](/config/#server-https) can directly accept the options object.
- `chokidarWatchOptions` is now [`server.watch`](/config/#server-watch).

- [`assetsInclude`](/config/#assetsInclude) now expects `string | RegExp | (string | RegExp)[]` instead of a function.
- [`assetsInclude`](/config/#assetsinclude) now expects `string | RegExp | (string | RegExp)[]` instead of a function.

- All Vue specific options are removed; Pass options to the Vue plugin instead.

## Alias Behavior Change

[`alias`](/config/#alias) is now being passed to `@rollup/plugin-alias` and no longer require start/ending slashes. The behavior is now a direct replacement, so 1.0-style directory alias key should remove the ending slash:
[`alias`](/config/#resolve-alias) is now being passed to `@rollup/plugin-alias` and no longer require start/ending slashes. The behavior is now a direct replacement, so 1.0-style directory alias key should remove the ending slash:

```diff
- alias: { '/@foo/': path.resolve(__dirname, 'some-special-dir') }
Expand Down

0 comments on commit ed16488

Please sign in to comment.