-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstorefront.webpack.js
More file actions
40 lines (39 loc) · 3.47 KB
/
Copy pathstorefront.webpack.js
File metadata and controls
40 lines (39 loc) · 3.47 KB
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
31
32
33
34
35
36
37
38
39
40
const path = require('path')
module.exports = () => ({
resolve: {
alias: {
'./base-config': path.resolve(__dirname, 'template/js/netlify-cms/base-config'),
//'./base-config/sections.js': path.resolve(__dirname, 'template/js/netlify-cms/base-config/sections.js'),
'./html/ProductCard.html': path.resolve(__dirname, 'template/js/custom-js/html/ProductCard.html'),
// './js/ProductCard.js': path.resolve(__dirname, 'template/js/custom-js/html/ProductCard.js'),
// './html/ProductGallery.html': path.resolve(__dirname, 'template/js/custom-js/html/ProductGallery.html'),
// './js/ProductGallery.js': path.resolve(__dirname, 'template/js/custom-js/html/ProductGallery.js'),
// // './scss/ProductGallery.scss': path.resolve(__dirname, 'template/js/custom-js/html/ProductGallery.scss'),
'./html/TheProduct.html': path.resolve(__dirname, 'template/js/custom-js/html/TheProduct.html'),
'./js/TheProduct.js': path.resolve(__dirname, 'template/js/custom-js/html/TheProduct.js'),
'./html/ShippingCalculator.html': path.resolve(__dirname, 'template/js/custom-js/html/ShippingCalculator.html'),
'./js/ShippingCalculator.js': path.resolve(__dirname, 'template/js/custom-js/html/ShippingCalculator.js'),
// './html/TheProduct.html': path.resolve(__dirname, 'template/js/custom-js/html/TheProduct.html'),
// './js/TheProduct.js': path.resolve(__dirname, 'template/js/custom-js/html/TheProduct.js'),
'./html/SearchEngine.html': path.resolve(__dirname, 'template/js/custom-js/html/SearchEngine.html'),
'./html/ShippingLine.html': path.resolve(__dirname, 'template/js/custom-js/html/ShippingLine.html'),
'./js/SearchEngine.js': path.resolve(__dirname, 'template/js/custom-js/html/SearchEngine.js'),
//'./html/InstantSearch.html': path.resolve(__dirname, 'template/js/custom-js/html/InstantSearch.html'),
//'./js/InstantSearch.js': path.resolve(__dirname, 'template/js/custom-js/html/InstantSearch.js'),
// './html/APrices.html': path.resolve(__dirname, 'template/js/custom-js/html/APrices.html'),
'./html/CartItem.html': path.resolve(__dirname, 'template/js/custom-js/html/CartItem.html'),
'./js/CartItem.js': path.resolve(__dirname, 'template/js/custom-js/html/CartItem.js'),
'./html/TheCart.html': path.resolve(__dirname, 'template/js/custom-js/html/TheCart.html'),
'./html/EcCheckout.html': path.resolve(__dirname, 'template/js/custom-js/html/EcCheckout.html'),
'./js/EcCheckout.js': path.resolve(__dirname, 'template/js/custom-js/html/EcCheckout.js'),
'./html/PaymentMethods.html': path.resolve(__dirname, 'template/js/custom-js/html/PaymentMethods.html'),
'./App.vue': path.resolve(__dirname, 'template/js/custom-js/html/App.vue'),
// // './html/EcSummary.html': path.resolve(__dirname, 'template/js/custom-js/html/EcSummary.html'),
// // './html/QuantitySelector.html': path.resolve(__dirname, 'template/js/custom-js/html/QuantitySelector.html'),
// // './js/QuantitySelector.js': path.resolve(__dirname, 'template/js/custom-js/html/QuantitySelector.js'),
'./html/CartQuickview.html': path.resolve(__dirname, 'template/js/custom-js/html/CartQuickview.html'),
'./html/QuantitySelector.html': path.resolve(__dirname, 'template/js/custom-js/html/QuantitySelector.html'),
'./js/QuantitySelector.js': path.resolve(__dirname, 'template/js/custom-js/html/QuantitySelector.js'),
}
}
})