mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-09-09 00:04:59 +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");
|
|
};
|