mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-09-26 00:24:59 +00:00
15 lines
380 B
JavaScript
15 lines
380 B
JavaScript
module.exports = function (encore, entries) {
|
|
encore.addEntry(
|
|
"page_ticket",
|
|
__dirname + "/src/Resources/public/page/ticket/index.ts",
|
|
);
|
|
encore.addEntry(
|
|
"vue_ticket_app",
|
|
__dirname + "/src/Resources/public/vuejs/TicketApp/index.ts",
|
|
);
|
|
encore.addEntry(
|
|
"vue_ticket_list",
|
|
__dirname + "/src/Resources/public/vuejs/TicketList/index.ts",
|
|
);
|
|
};
|