Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save belachkar/ecb878593e58920150ffd6ba7dc8f206 to your computer and use it in GitHub Desktop.
Save belachkar/ecb878593e58920150ffd6ba7dc8f206 to your computer and use it in GitHub Desktop.

Angular keep fils on the build

Example of copying _redirects file from the root filder to the dist root folder on build time.

angular.json:

"assets": [
  "src/favicon.ico",
  "src/assets",
  {
    "glob": "_redirects",
    "input": "./",
    "output": "/"
  }
],
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment