Skip to content

Commit 78c44ec

Browse files
mvdluitatscott
authored andcommitted
docs: move public folder to workspace configuration section (angular#56931)
move the public folder entry from the application project files section to the workspace configuration files section PR Close angular#56931
1 parent 8df13e1 commit 78c44ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adev/src/content/reference/configs/file-structure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ The top level of the workspace contains workspace-wide configuration files, conf
4242
| `package.json` | Configures [npm package dependencies](reference/configs/npm-packages) that are available to all projects in the workspace. See [npm documentation](https://docs.npmjs.com/files/package.json) for the specific format and contents of this file. |
4343
| `package-lock.json` | Provides version information for all packages installed into `node_modules` by the npm client. See [npm documentation](https://docs.npmjs.com/files/package-lock.json) for details. |
4444
| `src/` | Source files for the root-level application project. |
45+
| `public/` | Contains image and other asset files to be served as static files by the dev server and copied as-is when you build your application. |
4546
| `node_modules/` | Installed [npm packages](reference/configs/npm-packages) for the entire workspace. Workspace-wide `node_modules` dependencies are visible to all projects. |
4647
| `tsconfig.json` | The base [TypeScript](https://www.typescriptlang.org) configuration for projects in the workspace. All other configuration files inherit from this base file. For more information, see the [relevant TypeScript documentation](https://www.typescriptlang.org/docs/handbook/tsconfig-json.html#tsconfig-bases). |
4748

@@ -64,7 +65,6 @@ Subfolders contain the application source and application-specific configuration
6465
| Application support files | Purpose |
6566
|:--- |:--- |
6667
| `app/` | Contains the component files in which your application logic and data are defined. See details [below](#app-src). |
67-
| `public/` | Contains image and other asset files to be served as static files by the dev server and copied as-is when you build your application. |
6868
| `favicon.ico` | An icon to use for this application in the bookmark bar. |
6969
| `index.html` | The main HTML page that is served when someone visits your site. The CLI automatically adds all JavaScript and CSS files when building your app, so you typically don't need to add any `<script>` or`<link>` tags here manually. |
7070
| `main.ts` | The main entry point for your application. |

0 commit comments

Comments
 (0)