mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-28 05:08:48 +01:00
15 lines
384 B
TypeScript
15 lines
384 B
TypeScript
export const IMAGES_ROOT = 'assets/img/';
|
|
|
|
export const layoutSizes = {
|
|
resWidthCollapseSidebar: 1200,
|
|
resWidthHideSidebar: 500
|
|
};
|
|
|
|
export const layoutPaths = {
|
|
images: {
|
|
root: IMAGES_ROOT,
|
|
profile: IMAGES_ROOT + 'app/profile/',
|
|
amMap: 'assets/img/theme/vendor/ammap//dist/ammap/images/',
|
|
amChart: 'assets/img/theme/vendor/amcharts/dist/amcharts/images/'
|
|
}
|
|
};
|