提交 ae05c0de 编写于 作者: fxy060608's avatar fxy060608

feat(hbx): support UNI_MINIMIZE

上级 55762418
......@@ -25,5 +25,6 @@ declare namespace NodeJS {
UNI_CUSTOM_SCRIPT?: string
UNI_CUSTOM_DEFINE?: string
UNI_CUSTOM_CONTEXT?: string
UNI_MINIMIZE?: 'true'
}
}
......@@ -9,7 +9,10 @@ import { initEnv, printStartupDuration } from './utils'
import { initEasycom } from '../utils/easycom'
export async function runDev(options: CliOptions & ServerOptions) {
extend(options, { watch: {}, minify: false })
extend(options, {
watch: {},
minify: process.env.UNI_MINIMIZE === 'true' ? true : false,
})
initEnv('dev', options)
try {
if (options.platform === 'h5') {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册