blob: 95c03ed296953b1a38c49ab47aeca850982be703 (
plain)
1
2
3
4
5
6
7
8
|
export const UTM_SOURCE = {
'/': 'web.home',
'/shop/product/[slug]': 'web.other-product',
'/shop/search': 'web.search',
'/shop/brands/[slug]': 'web.brand',
'/shop/category/[slug]': 'web.category',
'/shop/cart': 'web.cart',
};
|