diff options
author | Kosta Harlan <kharlan@wikimedia.org> | 2022-11-15 14:14:46 +0100 |
---|---|---|
committer | Kosta Harlan <kharlan@wikimedia.org> | 2022-11-17 12:00:23 +0000 |
commit | 13c53dd43b441b6b9ac79565f23f71785a1fcaf3 (patch) | |
tree | 7258b2204575d473c1b8ae95a0b478da43ce6dcc /includes/DevelopmentSettings.php | |
parent | 9e4457f03cab4e93438fac1df0f9715f58ad1209 (diff) | |
download | mediawikicore-13c53dd43b441b6b9ac79565f23f71785a1fcaf3.tar.gz mediawikicore-13c53dd43b441b6b9ac79565f23f71785a1fcaf3.zip |
DevelopmentSettings: Enable Vue development mode
Change-Id: Id68a44273c6eb546873e4408e56aaa5569a2dade
Diffstat (limited to 'includes/DevelopmentSettings.php')
-rw-r--r-- | includes/DevelopmentSettings.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/includes/DevelopmentSettings.php b/includes/DevelopmentSettings.php index 2cf9cf5d26c8..9514ba056ad9 100644 --- a/includes/DevelopmentSettings.php +++ b/includes/DevelopmentSettings.php @@ -108,6 +108,9 @@ $wgMaxArticleSize = 20; // in Kilobyte $wgParsoidSettings['wt2htmlLimits']['wikitextSize'] = 20 * 1024; // $wgMaxArticleSize, in byte $wgParsoidSettings['html2wtLimits']['htmlSize'] = 100 * 1024; // in characters! +// Enable Vue dev mode by default, so that Vue devtools are functional. +$wgVueDevelopmentMode = true; + /** * Experimental changes that may later become the default. * (Must reference a Phabricator ticket) |