Reputation: 409
How do I go about switching out the "core" module as the default view? There are four modules: "articles", "chat", "core", and "users" but I want to create my own custom view from scratch.
Upvotes: 0
Views: 225
Reputation: 11
I guess what you want to ask is how to use Express
rendering a template ?
It's not about MEAN stack
, it's about how to use Express
.
If your MEAN project starts from an existing project, you may find View
directory, add your own view templates to this directory,and then maybe you need to add some route code in Controller
level.
Upvotes: 0