Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordizzy <diosmosis@users.noreply.github.com>2022-03-30 21:31:05 +0300
committerGitHub <noreply@github.com>2022-03-30 21:31:05 +0300
commit09e1412dcd0e142c760eb5447af254a817b7b056 (patch)
tree1037930584499d7b2428351022f4a32733632659 /vue.config.js
parentcee2b8e670c390c370aa51a02e0613848121ddab (diff)
[Vue] standardize use of v-html with ReleaseChecklistTest (#19020)
* modify v-html use * exclude node_modules from watch command * force use of $sanitize w/ v-html through test + replace existing missing uses * update tagmanager submodule * remove accidental git add Co-authored-by: sgiehl <stefan@matomo.org>
Diffstat (limited to 'vue.config.js')
-rw-r--r--vue.config.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/vue.config.js b/vue.config.js
index 2ec902126e..18c0cbfa5c 100644
--- a/vue.config.js
+++ b/vue.config.js
@@ -89,6 +89,10 @@ module.exports = {
// disable asset size warnings
config.performance.hints(false);
+ config.watchOptions({
+ ignored: /node_modules/,
+ });
+
// override config so we can generate type definitions for plugin libraries
// see https://github.com/vuejs/vue-cli/issues/6543
if (process.env.NODE_ENV !== 'development') {