codecamp

MorJS devtool - SourceMap 配置

  • 类型: ​string​ 或 ​boolean
  • 默认值: 开发环境下默认为 ​cheap-module-source-map​, 生产环境下默认为 ​false

用户配置 sourcemap 类型。

常见的可选类型有:

  • eval, 最快的类型,但不支持低版本浏览器和小程序运行环境
  • source-map, 最慢最全的类型

更多类型详见 webpack#devtool 配置

当 ​devtool​ 指定为 ​true​ 时:

  • 开发模式(​mode = development​)下会使用:​cheap-module-source-map
  • 生产模式(​mode = production​)下会使用:​nosources-source-map


MorJS define - 变量替换
MorJS experiments - 实验特性
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

MorJS 指南

MorJS 基础用法

MorJS 配置

MorJS 编译相关配置

MorJS 进阶用法

MorJS Web开发

MorJS Web开发介绍

MorJS Web开发快速上手

MorJS Tabbar IOS 小黑条适配开关

MorJS 社区

MorJS 规范

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }