Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Angular output path changed #42

Open
Til7701 opened this issue Dec 30, 2024 · 0 comments
Open

Angular output path changed #42

Til7701 opened this issue Dec 30, 2024 · 0 comments

Comments

@Til7701
Copy link

Til7701 commented Dec 30, 2024

Since Angular version 17 the output path changed by default. See angular/angular-cli#26304

Files are no longer put in target/classes/static when the output path is set to it. Instead they are in target/classes/static/browser. Thus Spring Boot does not serve the files correctly.

In the issue mentioned above there is a workaround. In angular.json you can modify the outputPath like this:

"architect": {
  "build": {
    "builder": "@angular-devkit/build-angular:application",
    "options": {
      "outputPath": {
        "base": "target/classes/static",
        "browser": ""
      },
      "index": "src/index.html",
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant