You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I updated my project to Angular 17 and wanted to try out the vite/application builder.
When building the project, there's a new structure in dist than before.
So I guess that I need to change something in Dockerfile. Simply changing COPY dist/my-cool-projectname . to COPY dist/my-cool-projectname/browser . doesn't work.
I suspect that this has something to do with SSR - do you have any advice?
The text was updated successfully, but these errors were encountered:
This PR adapts the `ngsscbuild` builder to the new `@angular-devkit/build-angular:application` builder.
When using `@angular-devkit/build-angular:application` with a `server` configuration, the `filePattern` is extended to also include the `index.server.html` file. If using `@angular-devkit/build-angular:application` without a `server` configuration, the `ngssc.json` file is generated inside the `{outputPath}/browser` directory, next to the browser files.
Closes#87
I updated my project to Angular 17 and wanted to try out the vite/application builder.
When building the project, there's a new structure in
dist
than before.New structure
Old structure
So I guess that I need to change something in
Dockerfile
. Simply changingCOPY dist/my-cool-projectname .
toCOPY dist/my-cool-projectname/browser .
doesn't work.I suspect that this has something to do with SSR - do you have any advice?
The text was updated successfully, but these errors were encountered: