mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
10 lines
265 B
JavaScript
10 lines
265 B
JavaScript
// this file loads all assets from the Chill person bundle
|
|
module.exports = function(encore, entries)
|
|
{
|
|
entries.push(__dirname + '/Resources/public/pages/index.js');
|
|
|
|
encore.addAliases({
|
|
ChillBudgetAssets: __dirname + '/Resources/public'
|
|
});
|
|
};
|