generated from ecomplus/storefront-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstorefront.webpack.js
19 lines (18 loc) · 1.03 KB
/
storefront.webpack.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
const path = require('path')
module.exports = () => ({
resolve: {
alias: {
'./js/APrices.js': path.resolve(__dirname, 'template/js/custom-js/components/APrices.js'),
'./html/APrices.html': path.resolve(__dirname, 'template/js/custom-js/components/APrices.html'),
'./js/ProductCard.js': path.resolve(__dirname, 'template/js/custom-js/components/ProductCard.js'),
'./html/ProductCard.html': path.resolve(__dirname, 'template/js/custom-js/components/ProductCard.html'),
'./js/TheProduct.js': path.resolve(__dirname, 'template/js/custom-js/components/TheProduct.js'),
'./html/TheProduct.html': path.resolve(__dirname, 'template/js/custom-js/components/TheProduct.html'),
'./html/ProductGallery.html': path.resolve(__dirname, 'template/js/custom-js/components/ProductGallery.html'),
'./html/EcCheckout.html': path.resolve(__dirname, 'template/js/custom-js/components/EcCheckout.html'),
'./js/EcCheckout.js': path.resolve(__dirname, 'template/js/custom-js/components/EcCheckout.js')
}
}
})
*/