Skip to content

Commit 2dfdcb6

Browse files
committed
fix: prevent wrapping only icons
1 parent 9be88c5 commit 2dfdcb6

File tree

3 files changed

+4
-4
lines changed
  • src/content/tutorial/1-vite-plugin

3 files changed

+4
-4
lines changed

β€Žsrc/content/tutorial/1-vite-plugin/1-yaml-plugin/1-importing-yaml-files/content.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ focus: /index.js
66

77
# Welcome to Vite Plugin tutorial
88

9-
Hey there, and welcome to Vite Plugin tutorial πŸ‘‹!
9+
Hey there, and welcome to Vite Plugin tutorial πŸ‘‹!
1010

1111
In this tutorial we'll go through steps for creating custom Vite plugins. We'll start by creating a custom Vite plugin for loading `.yaml` files.
1212

@@ -28,4 +28,4 @@ const content = ["Initial content"];
2828
export { content };
2929
```
3030

31-
At this point we should run into error when Vite fails to load `.yaml` file. ❌
31+
At this point we should run into error when Vite fails to load `.yaml` file. βŒ

β€Žsrc/content/tutorial/1-vite-plugin/1-yaml-plugin/4-processing-yaml-files/content.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ Add required logic to Vite plugin's load hook:
3434
- Convert contents of `.yaml` file into Javascript using `parse` from `yaml` package
3535
- Serialize the Javascript object into `string` and return it as default export from the `load` hook
3636

37-
Contents of `content.yaml` should appear in preview as JSON. βœ…
37+
Contents of `content.yaml` should appear in preview as JSON. βœ…

β€Žsrc/content/tutorial/1-vite-plugin/2-env-plugin/3-resolve-id-of-virtual-module/content.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,4 @@ To fix this we'll need to apply the `\0` prefix in the `load()` hook as well:
6363
}
6464
```
6565
66-
The code returned from `load` hook is now visible in the browser! βœ…
66+
The code returned from `load` hook is now visible in the browser! βœ…

0 commit comments

Comments
Β (0)