Skip to content

Commit

Permalink
imsi : 정상동작 test
Browse files Browse the repository at this point in the history
  • Loading branch information
ncb6206 committed Jan 18, 2024
1 parent caeecb2 commit 31ba2b3
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions src/service/products.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,18 @@ export const GET = async ({ type, pagesize, currentpage }: IPageParams) => {
// },
// });

const response = await instance.get(import.meta.env.VITE_PROXY_URL, {
params: {
query: '신발',
display: actSize,
start: actPage,
sort: 'sim',
filter: 'medium',
const response = await instance.get(
'https://r1itcy4b28.execute-api.us-east-1.amazonaws.com/default/proxyRewrite',
{
params: {
query: '신발',
display: actSize,
start: actPage,
sort: 'sim',
filter: 'medium',
},
},
});
);

if (type === 'length') return response.data.items.length;

Expand Down

0 comments on commit 31ba2b3

Please sign in to comment.