From 72fcd46ad6a47280f07f88eaac4b13ed6969eb0c Mon Sep 17 00:00:00 2001 From: Ken Vu Date: Mon, 23 May 2016 13:10:30 +1200 Subject: [PATCH] Fix: `browserify` flag should be false Signed-off-by: Ken Vu --- lib/loader.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/loader.js b/lib/loader.js index 1e889b29b..695c3265b 100644 --- a/lib/loader.js +++ b/lib/loader.js @@ -218,7 +218,7 @@ module.exports = function (content) { 'if (module.hot) {(function () {' + ' module.hot.accept()\n' + ' var hotAPI = require("vue-hot-reload-api")\n' + - ' hotAPI.install(require("vue"), true)\n' + + ' hotAPI.install(require("vue"), false)\n' + ' if (!hotAPI.compatible) return\n' + ' var id = ' + JSON.stringify(filePath) + '\n' + ' if (!module.hot.data) {\n' +