mirror of
https://gitee.com/eolink_admin/postcat.git
synced 2024-11-29 18:28:09 +08:00
ddf7292ecb
* feat: API Authorization * fix: API Group flow * perf(api-group): group select status * build(e2e): delete image --------- Co-authored-by: buqiyuan <1743369777@qq.com>
33 lines
691 B
JavaScript
33 lines
691 B
JavaScript
const baseUrl = './src/browser/src/app/shared/services/storage/';
|
|
module.exports = {
|
|
entry: {
|
|
// target: ["./test/apiData.ts", "./test/env.ts"]
|
|
target: [baseUrl + 'api.ts']
|
|
},
|
|
output: [
|
|
{
|
|
mode: 'angular',
|
|
name: 'remote.service',
|
|
path: baseUrl
|
|
},
|
|
{
|
|
mode: 'dexie',
|
|
name: 'local.service',
|
|
path: baseUrl
|
|
},
|
|
{
|
|
mode: 'glue',
|
|
name: 'api.service',
|
|
path: baseUrl
|
|
}
|
|
// schema: "./output/entities"
|
|
// typeorm: "./output/typeorm"
|
|
],
|
|
remoteBase: '',
|
|
paramsFill: {
|
|
projectUuid: 'this.store.getCurrentProjectID',
|
|
workSpaceUuid: 'this.store.getCurrentWorkspaceUuid',
|
|
withItem: true
|
|
}
|
|
};
|