mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-07-21 08:07:44 +00:00
9 lines
274 B
JavaScript
9 lines
274 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");
|
|
};
|