Skip to content

Commit 36db700

Browse files
committed
Proofreading
1 parent 9d1b012 commit 36db700

5 files changed

Lines changed: 10 additions & 10 deletions

File tree

app/pages/6.0/09.assets-vite/01.introduction/docs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Introduction
3-
description: Overview of asset management in UserFrosting 6, including the transition from Webpack Encore to Vite.
3+
description: Overview of asset management in UserFrosting, including the transition from Webpack Encore to Vite.
44
---
55

66
UserFrosting uses a modern asset bundling system to compile and manage frontend assets like JavaScript, TypeScript, Vue components, and stylesheets. Think of it as a production line in a factory: raw materials (your source code) come in one end, get processed and refined through various stages, and emerge as finished products (optimized bundles) ready to ship to customers (your users' browsers).

app/pages/6.0/09.assets-vite/05.using-assets/docs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ Loads a JavaScript entry point and includes the proper `<script>` tag.
1818
```
1919

2020
> [!NOTE]
21-
> The argument to `vite_js()` should match the name of an [entry point](assets-vite/vite-configuration#understanding-entry-points) defined in your `vite.config.ts`. For example, if you have an entry point defined as `main: 'app/assets/main.ts'`, you would use `vite_js('main.ts')` to load it.
21+
> The argument to `vite_js()` should match the name of an [entry point](/assets-vite/vite-configuration#understanding-entry-points) defined in your `vite.config.ts`. For example, if you have an entry point defined as `main: 'app/assets/main.ts'`, you would use `vite_js('main.ts')` to load it.
2222
2323
**Output in development mode:**
2424
```html
2525
<script type="module" src="http://localhost:5173/@vite/client"></script>
2626
<script type="module" src="http://localhost:5173/main.ts"></script>
2727
```
2828

29-
These points to the Vite dev server, which serves your assets with hot module replacement (HMR) for instant updates.
29+
These script tags point to the Vite dev server, which serves your assets with hot module replacement (HMR) for instant updates.
3030

3131
**Output in production mode:**
3232
```html

app/pages/6.0/10.javascript-vue/01.introduction/docs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ This same pattern scales to complex data tables, forms, and interactive dashboar
6767
6868
## Axios: Communicating with the Server
6969

70-
[Axios](https://axios-http.com/) is a promise-based HTTP client for making API requests. It provides a clean and consistent API for sending requests and handling responses, making it easier to communicate with your backend. In other words, **Axios is the bridge between your Vue components and the UserFrosting backend API**.**
70+
[Axios](https://axios-http.com/) is a promise-based HTTP client for making API requests. It provides a clean and consistent API for sending requests and handling responses, making it easier to communicate with your backend. In other words, **Axios is the bridge between your Vue components and the UserFrosting backend API**.
7171

7272
**Key benefits of using Axios**:
7373
- **Consistent API**: Works the same in browsers and Node.js

app/pages/6.0/10.javascript-vue/03.vue/docs.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -104,11 +104,11 @@ Other pages can be traditional server-side rendering (Twig templates) but includ
104104
105105
### Key Vue Features Provided by UserFrosting
106106

107-
The UI that's is included in a default UserFrosting installation is built as a set of Vue components, provided by each sprinkles.
107+
The UI that is included in a default UserFrosting installation is built as a set of Vue components provided by the different Sprinkles.
108108

109109
UserFrosting's **Core Sprinkle** provides Vue components and utilities that form the foundation of the frontend:
110110
- **Full Translator** - Vue components and composables for working with UserFrosting's translation system
111-
- **Base components** - Common helper composable to handle CSRF, Sprunjer, etc.
111+
- **Base components** - Common helper composables to handle CSRF, Sprunje, etc.
112112
- **Fortress integration** - Vue components for working with UserFrosting's validation system
113113
- **Router configuration** - Pre-configured Vue Router setup
114114
- **Store modules** - Pinia stores for common application state : Alerts, Configuration, etc.
@@ -121,8 +121,8 @@ The **Account Sprinkle** builds on Core with authentication-related components:
121121

122122
The **Admin Sprinkle** extends Account with administrative components and interfaces. It provides the admin dashboard you see when you log into a fresh UserFrosting installation.
123123

124-
Finally, the **Pink Cupcake** theme provides the frontend theme. It include:
125-
- **Custom styling** - Custom styles based on UiKit
124+
Finally, the **Pink Cupcake** theme provides the frontend theme. It includes:
125+
- **Custom styling** - Custom styles based on UIkit
126126
- **Layout customization** - Overall page structure and navigation
127127
- **Component variants** - Provide themed versions of core components
128128

app/pages/6.0/10.javascript-vue/06.uikit/docs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ Unlike heavier frameworks like Bootstrap, UIkit maintains a smaller footprint wh
1919

2020
## Core Components
2121

22-
Below are some of the most commonly used UIkit components. For a complete list and detailed documentation, visit the [UIkit documentation](https://getuikit.com/docs/).
22+
Below are some of the most commonly used UIkit components. For a complete list and detailed documentation, visit the [UIkit documentation](https://getuikit.com/docs/).
2323

24-
> [!NOTE] UserFrosting also includes custom styles and components built on top of UIkit, so be sure to check out the [UI Frontend & Theming](/javascript-vue/uikit) for more details.
24+
> [!NOTE] UserFrosting also includes custom styles and components built on top of UIkit, so be sure to check out [UI Frontend & Theming](/ui-theming) for more details.
2525
2626
### Buttons
2727

0 commit comments

Comments
 (0)