ytian-scabbard
v3.3.5
Published
service for ytian
Downloads
26
Readme
ytian-scabbard
ytian的本地服务和打包配置
安装
如果项目通过ytian
创建,则不需要单独安装。
yarn add ytian-scabbard -D
// or
npm install ytian-scabbard --save-dev
指令
serve
开启本地服务ytian-scabbard serve
打包编译 ytian-scabbard build
更多publicPath
相关内容可以看这里
配置文件
ytian-scabbard
的功能依赖于ytian.config.js
// ytian.config.js
module.exports = {
// 项目名称,执行 ytian-scabbard build -R 时的 publicPath 的默认值
name: 'my-app',
// 终端类型(pc|mobile)
target: 'pc',
// 项目类型(cc-center|spa|spa-pro)
type: 'cc-center',
// postcss-viewport的参数,只在target为mobile时生效,默认375
viewportWidth: 640,
// webpack-dev-server的proxy
// 详细配置可参考https://webpack.js.org/configuration/dev-server/#devserver-proxy
proxy: {
'/api': 'http://localhost:3000'
},
};