From 81db6b876f69d9fe667bcc8ed88f55a156cc9b56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BB=BB=E7=BE=BD=E9=A3=9E?= Date: Mon, 6 Jan 2020 16:39:25 +0800 Subject: [PATCH] =?UTF-8?q?=E8=87=AA=E5=8A=A8=E6=8E=92=E9=99=A4mock?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 生产环境,使用webpack的条件编译自动排除mock数据 --- src/main.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/main.js b/src/main.js index ef07f389..83a66da9 100644 --- a/src/main.js +++ b/src/main.js @@ -24,11 +24,9 @@ import * as filters from './filters' // global filters * you want to use MockJs for mock api * you can execute: mockXHR() * - * Currently MockJs will be used in the production environment, - * please remove it before going online! ! ! */ -import { mockXHR } from '../mock' if (process.env.NODE_ENV === 'production') { + const { mockXHR } = require('../mock').default mockXHR() }