mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-13 22:04:23 +00:00
13 lines
339 B
JavaScript
13 lines
339 B
JavaScript
module.exports = function(encore, entries)
|
|
{
|
|
// Aliases are used when webpack is trying to resolve modules path
|
|
encore.addAliases({
|
|
ChillThirdPartyAssets: __dirname + '/Resources/public'
|
|
});
|
|
|
|
encore.addEntry(
|
|
'page_3party_3party_index',
|
|
__dirname + '/Resources/public/page/index/index.js'
|
|
);
|
|
};
|