10000 fix(docs): the plugin-dev in zh has a regexp lose the end / by HelloJiya · Pull Request #6623 · vuejs/vue-cli · GitHub
[go: up one dir, main page]

Skip to content

fix(docs): the plugin-dev in zh has a regexp lose the end / #6623

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

Merged
merged 1 commit into from
Aug 9, 2021
Merged
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
fix(docs): the plugin-dev in zh has a regexp lose the end /
  • Loading branch information
hellobili committed Aug 5, 2021
commit 204dac17b7829e1b4304e1a97d8e52e4d73108a8
2 changes: 1 addition & 1 deletion docs/zh/dev-guide/plugin-dev.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ export default {
extend: '@vue/cli-service/generator/template/src/App.vue'
replace:
- !!js/regexp /Welcome to Your Vue\.js App/
- !!js/regexp /<script>[^]*?<\/script>
- !!js/regexp /<script>[^]*?<\/script>/
---

<%# REPLACE %>
Expand Down
0