File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -16,25 +16,25 @@ A Vite plugin that enables HTTPS for the Vite development server using TLSX. Thi
16
16
17
17
``` bash
18
18
# npm
19
- npm install @stacksjs/ vite-plugin-tlsx -D
19
+ npm install vite-plugin-tlsx -D
20
20
21
21
# yarn
22
- yarn add @stacksjs/ vite-plugin-tlsx -D
22
+ yarn add vite-plugin-tlsx -D
23
23
24
24
# pnpm
25
- pnpm add @stacksjs/ vite-plugin-tlsx -D
25
+ pnpm add vite-plugin-tlsx -D
26
26
27
27
# bun
28
- bun add @stacksjs/ vite-plugin-tlsx -D
28
+ bun add vite-plugin-tlsx -D
29
29
```
30
30
31
31
## Usage
32
32
33
33
Add the plugin to your ` vite.config.ts ` file:
34
34
35
35
``` ts
36
+ import tlsx from ' vite-plugin-tlsx'
36
37
import { defineConfig } from ' vite'
37
- import tlsx from ' @stacksjs/vite-plugin-tlsx'
38
38
39
39
export default defineConfig ({
40
40
plugins: [
@@ -55,8 +55,8 @@ export default defineConfig({
55
55
56
56
``` ts
57
57
// .vitepress/config.ts
58
+ import tlsx from ' vite-plugin-tlsx'
58
59
import { defineConfig } from ' vitepress'
59
- import tlsx from ' @stacksjs/vite-plugin-tlsx'
60
60
61
61
export default defineConfig ({
62
62
vite: {
You can’t perform that action at this time.
0 commit comments