mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-13 22:04:23 +00:00
10 lines
282 B
JavaScript
10 lines
282 B
JavaScript
// this file loads all assets from the Chill budget bundle
|
|
module.exports = function(encore, entries)
|
|
{
|
|
encore.addAliases({
|
|
ChillBudgetAssets: __dirname + '/Resources/public'
|
|
});
|
|
|
|
encore.addEntry('page_budget', __dirname + '/Resources/public/page/index.js');
|
|
};
|