edit and re publist
This commit is contained in:
parent
712843527b
commit
298b9bfc59
|
|
@ -14,6 +14,7 @@ export class Product extends CoreEntity {
|
||||||
const env = process.env.ENV || 'production';
|
const env = process.env.ENV || 'production';
|
||||||
const prefix = process.env.PREFIX_VERSION || '/api';
|
const prefix = process.env.PREFIX_VERSION || '/api';
|
||||||
const port = process.env.APP_PORT || '4000';
|
const port = process.env.APP_PORT || '4000';
|
||||||
|
const domain = process.env.APP_DOMAIN || '';
|
||||||
|
|
||||||
return (value as string[]).map((item) => {
|
return (value as string[]).map((item) => {
|
||||||
// Nếu đã là URL đầy đủ thì trả về nguyên xi
|
// Nếu đã là URL đầy đủ thì trả về nguyên xi
|
||||||
|
|
@ -26,7 +27,7 @@ export class Product extends CoreEntity {
|
||||||
if (env === 'dev') {
|
if (env === 'dev') {
|
||||||
return `http://localhost:${port}${prefix}/${path}`;
|
return `http://localhost:${port}${prefix}/${path}`;
|
||||||
}
|
}
|
||||||
return path;
|
return `http://${domain}:${port}${prefix}/${path}`;
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
images: string[];
|
images: string[];
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue