Skip to content

Commit a5ec39f

Browse files
AlMilneGatsbyJS Bot
authored andcommitted
chore(docs): Updated pronouns as per style guide (#18680)
1 parent 16e7802 commit a5ec39f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/docs/asset-prefix.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Once your application is built out, all assets will be automatically prefixed by
3838
<script src="https://cdn.example.com/app-common-1234.js"></script>
3939
```
4040

41-
However - if you were to deploy our application as-is, those assets would not be available! You can do this in a few ways, but the general approach will be to deploy the contents of the `public` folder to _both_ your core domain, and the CDN/asset prefix location.
41+
However - if you were to deploy your application as-is, those assets would not be available! You can do this in a few ways, but the general approach will be to deploy the contents of the `public` folder to _both_ your core domain, and the CDN/asset prefix location.
4242

4343
### Using `onPostBuild`
4444

@@ -55,7 +55,7 @@ exports.onPostBuild = async function onPostBuild() {
5555

5656
### Using `package.json` scripts
5757

58-
Additionally, you can use an npm script, which will let us use some command line interfaces/executables to perform some action, in this case, deploying our assets directory!
58+
Additionally, you can use an npm script, which will let you use some command line interfaces/executables to perform some action, in this case, deploying your assets directory!
5959

6060
In this example, I'll use the `aws-cli` and `s3` to sync the `public` folder (containing all our assets) to the `s3` bucket.
6161

@@ -68,7 +68,7 @@ In this example, I'll use the `aws-cli` and `s3` to sync the `public` folder (co
6868
}
6969
```
7070

71-
Now whenever the `build` script is invoked, e.g. `npm run build`, the `postbuild` script will be invoked _after_ the build completes, therefore making our assets available on a _separate_ domain after you have finished building out our application with prefixed assets.
71+
Now whenever the `build` script is invoked, e.g. `npm run build`, the `postbuild` script will be invoked _after_ the build completes, therefore making your assets available on a _separate_ domain after you have finished building out your application with prefixed assets.
7272

7373
## Additional Considerations
7474

0 commit comments

Comments
 (0)