1 Star 0 Fork 125

[大天使长]/docsify

forked from docsifyjs/docsify 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
server.js 552 Bytes
一键复制 编辑 原始数据 按行查看 历史
import { create } from 'browser-sync';
import { devConfig, prodConfig } from './server.configs.js';
const bsServer = create();
const args = process.argv.slice(2);
const config = args.includes('--dev') ? devConfig : prodConfig;
const configName = config === devConfig ? 'development' : 'production';
const isWatch = Boolean(config.files) && config.watch !== false;
const urlType = config === devConfig ? 'local' : 'CDN';
// prettier-ignore
console.log(`\nStarting ${configName} server (${urlType} URLs, watch: ${isWatch})\n`);
bsServer.init(config);
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/yydick/docsify.git
git@gitee.com:yydick/docsify.git
yydick
docsify
docsify
develop

搜索帮助