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
Copy file name to clipboardExpand all lines: adev/src/content/reference/configs/file-structure.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -42,6 +42,7 @@ The top level of the workspace contains workspace-wide configuration files, conf
42
42
|`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. |
43
43
|`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. |
44
44
|`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. |
45
46
|`node_modules/`| Installed [npm packages](reference/configs/npm-packages) for the entire workspace. Workspace-wide `node_modules` dependencies are visible to all projects. |
46
47
|`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). |
47
48
@@ -64,7 +65,6 @@ Subfolders contain the application source and application-specific configuration
64
65
| Application support files | Purpose |
65
66
|:--- |:--- |
66
67
|`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. |
68
68
|`favicon.ico`| An icon to use for this application in the bookmark bar. |
69
69
|`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. |
70
70
|`main.ts`| The main entry point for your application. |
0 commit comments