| 12345678910111213141516171819 |
- export const config = {
- host: 'http://58.144.197.158:19980/remotePublish',
- // host: 'http://36.133.176.76:19980/remotePublish',
- sourceFolder: 'dist',
- destFoler: 'skyeye-admin',
- reservedFiles: ['app.config.js'],
- };
- export interface Config {
- host: string;
- sourceFolder: string;
- destFoler: string;
- /**
- * 一些配置文件,比如app.config.js,每个项目可能不同。所以每次打包部署的时候,不需要替换,用它原来的即可。
- * 这个配置文件,每次备份之前先备份该文件,然后加压缩后再还原出来。
- */
- reservedFiles?: string[];
- }
|