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