I am working on using Zurb Foundation with WebPack and NPM, without Bower.
The problem I am encountering is the same as this below:
https://github.c
If you carefully see the foundation-sites 6.2.0 modules, you will find the changes in path as following
So basically you have to changes in webpack confing files entry as following
module.exports = {
entry: ['script!jquery/dist/jquery.min.js',
'script!foundation-sites/dist/js/foundation.min.js',
'./app/app.jsx'
]
}
and the entry for style should be like this
require('style!css!foundation-sites/dist/css/foundation.min.css');