UNPKG

nodefony

Version:
56 lines (51 loc) 1.04 kB
/** * * =============================================================================== * ROUTING BUNDLE {{ bundleName }} * * Copyright © {{ year }}/{{ projectYearNow }} {{authorFullName}} | {{authorMail}} * * =============================================================================== * * GENERATE BY {{projectName}} BUILDER * * {{name}} ROUTING {{ bundleName }} **/ {% if addons.annotations %} {% if command == "project"%} {% if front == "vue"%} module.exports = { app: { pattern: "/app*", defaults: { controller: "app:app:index" } }, }; {% else %} module.exports = {}; {% endif %} {% else %} module.exports = {}; {% endif %} {% else %} {% if command == "project" %} module.exports = { home: { pattern: "/", defaults: { controller: "app:app:index" } } }; {% else %} module.exports = { {{name}}: { pattern: "/{{name}}", defaults: { controller: "{{ bundleName }}:default:index" } } }; {% endif %} {% endif %}