-
Notifications
You must be signed in to change notification settings - Fork 11.9k
Closed
Labels
area: @angular-devkit/build-angulardevkit/build-angular:serverfeatureLabel used to distinguish feature request from other issuesLabel used to distinguish feature request from other issuesfeature: votes requiredFeature request which is currently still in the voting phaseFeature request which is currently still in the voting phase
Description
Command
build
Description
@angular-devkit/build-angular:browser has the ability to copy assets with the assets array in the options.
But @angular-devkit/build-angular:server doesn't have the ability.
My use case is that we build the app with angular universal support, and we want to deploy both the client and server files together. We have some custom server files to be copied over (when building and serving). But since @angular-devkit/build-angular:server doesn't support that, we have to use some workarounds. The options we have currently are:
- use a custom script to do the job
- separate the server side rendering from the API server, so that we can use a different stack for the server code.
Describe the solution you'd like
Add the assets support to @angular-devkit/build-angular:server.
Describe alternatives you've considered
- use a custom script to do the job
- separate the server-side rendering from the API server, so that we can use a different stack for the server code. but we don't want to separate them at the beginning since it makes the deployment more complex.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
area: @angular-devkit/build-angulardevkit/build-angular:serverfeatureLabel used to distinguish feature request from other issuesLabel used to distinguish feature request from other issuesfeature: votes requiredFeature request which is currently still in the voting phaseFeature request which is currently still in the voting phase