You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by qi...@apache.org on 2023/03/06 06:52:57 UTC

[skywalking-client-js] branch master updated: docs: update README and fix building warnings (#110)

This is an automated email from the ASF dual-hosted git repository.

qiuxiafan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking-client-js.git


The following commit(s) were added to refs/heads/master by this push:
     new 98e5a3c  docs: update README and fix building warnings (#110)
98e5a3c is described below

commit 98e5a3cb25caeb3ac01f03779f3c2c817d575554
Author: Fine0830 <fa...@gmail.com>
AuthorDate: Mon Mar 6 14:52:51 2023 +0800

    docs: update README and fix building warnings (#110)
---
 README.md         | 4 ++--
 webpack.config.js | 1 -
 2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md
index cfabce9..459d4ed 100644
--- a/README.md
+++ b/README.md
@@ -53,9 +53,9 @@ The register method supports the following parameters.
 |apiErrors|Boolean|Support API errors monitoring|false|true|
 |resourceErrors|Boolean|Support resource errors monitoring|false|true|
 |useFmp|Boolean|Collect FMP (first meaningful paint) data of the first screen|false|false|
-|enableSPA|Boolean|Monitor the page hashchange event and report PV, which is suitable for single page application scenarios|false|false|
+|enableSPA|Boolean|Monitor the page hashchange event and report PV, which is suitable for [single page application scenarios](https://github.com/apache/skywalking-client-js#spa-page). |false|false|
 |autoTracePerf|Boolean|Support sending of performance data automatically.|false|true|
-|vue|Vue|Support vue2 errors monitoring. Deprecated: This is no longer recommended. Please use the [Catching errors in frames](https://github.com/apache/skywalking-client-js#catching-errors-in-frames-including-react-angular-vue) scenario instead.)|false|undefined|
+|vue|Vue|Support vue2 errors monitoring. Deprecated: This is no longer recommended. Please use the [Catching errors in frames](https://github.com/apache/skywalking-client-js#catching-errors-in-frames-including-react-angular-vue) scenario instead. |false|undefined|
 |traceSDKInternal|Boolean|Support tracing SDK internal RPC.|false|false|
 |detailMode|Boolean|Support tracing http method and url as tags in spans.|false|true|
 |noTraceOrigins|(string \| RegExp)[]|Origin in the `noTraceOrigins` list will not be traced.|false|[]|
diff --git a/webpack.config.js b/webpack.config.js
index f300130..a099599 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -56,7 +56,6 @@ const config = {
 };
 if (isDev) {
   config.mode = 'development';
-  config.plugins.unshift(new webpack.HotModuleReplacementPlugin());
 } else {
   config.mode = 'production';
 }