chill-bundles/src/Bundle/ChillThirdPartyBundle/chill.webpack.config.js

15 lines
406 B
JavaScript

module.exports = function(encore, entries)
{
// Aliases are used when webpack is trying to resolve modules path
encore.addAliases({
ChillThirdPartyAssets: __dirname + '/Resources/public'
});
entries.push(__dirname + '/Resources/public/chill/index.js');
encore.addEntry(
'page_3party_3party_index',
__dirname + '/Resources/public/page/index/index.js'
);
};