我的老板给了我一个ionic1项目,但我的电脑是ionic3环境。我该如何打包项目。
'python' : "v-2.7"
'node' : "v-8.9"
'cordova': 'v-7.1'
'ionic' : "v-3.18"
答案 0 :(得分:1)
你必须使用这个命令
ionic start <YOUR APP NAME> --type=ionic1
希望这对你有用
答案 1 :(得分:1)
您也可以从模板创建新项目
ionic start [<project_name>] [<template>] --type=ionic1
例如
ionic start myApp tabs --type=ionic1
答案 2 :(得分:0)
您可以使用以下代码在Ionic 3环境中构建Ionic版本1应用程序
对于菜单:docker-compose.yml
对于标签:client:
# Use a static website hosting service in production
# See https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#deployment
image: ${CONTAINER_REGISTRY_BASE}/client
build:
context: ./client
cache_from:
- ${CONTAINER_REGISTRY_BASE}/client
command: npm start
env_file:
- ./client/.env
volumes:
- ./client:/usr/src/client:rw,cached
ports:
- "8080:3000"