generated from hlxsites/aem-boilerplate-commerce
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.mjs
More file actions
30 lines (29 loc) · 724 Bytes
/
build.mjs
File metadata and controls
30 lines (29 loc) · 724 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* eslint-disable import/no-extraneous-dependencies */
import { overrideGQLOperations } from '@dropins/build-tools/gql-extend.js';
overrideGQLOperations([
// ACCS does not have Downloadable Items
{
npm: '@dropins/storefront-cart',
skipFragments: ['DOWNLOADABLE_CART_ITEMS_FRAGMENT'],
operations: [],
},
{
npm: '@dropins/storefront-order',
skipFragments: ['DOWNLOADABLE_ORDER_ITEMS_FRAGMENT'],
operations: [],
},
// {
// npm: '@dropins/storefront-checkout',
// operations: [],
// },
// {
// npm: '@dropins/storefront-pdp',
// operations: [
// `
// fragment PRODUCT_FRAGMENT on ProductView {
// lowStock
// }
// `,
// ],
// },
]);