Skip to content
This repository was archived by the owner on Nov 6, 2023. It is now read-only.

Commit 4d1ec65

Browse files
committed
Remove stale documentation
1 parent 0ff0e37 commit 4d1ec65

File tree

1 file changed

+0
-30
lines changed

1 file changed

+0
-30
lines changed

README.md

Lines changed: 0 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -159,36 +159,6 @@ You may also need to add the following tasks to your csproj file. This are simil
159159

160160
```
161161

162-
## Setting up for HTTPS
163-
164-
For consistent schemas & for hot reload to not break while using https you will need to setup
165-
your vue app, before enabling the `https` flag.
166-
167-
1. Get the `mkcert` tool following the installation instructions on their [github](https://github.com/FiloSottile/mkcert) repository or their [releases](https://github.com/FiloSottile/mkcert/releases)
168-
2. Install root CA `mkcert -install`
169-
3. Generate the certificates `mkcert localhost 127.0.0.1 <local ipv4> ::1`
170-
4. Add certificates to `vue.config.js`
171-
```
172-
const fs = require('fs')
173-
174-
module.exports = {
175-
devServer: {
176-
https: {
177-
key: fs.readFileSync('./certs/localhost+3-key.pem'),
178-
cert: fs.readFileSync('./certs/localhost+3.pem'),
179-
}
180-
}
181-
}
182-
```
183-
5. you can now set the https option to true.
184-
```
185-
endpoints.MapToVueCliProxy(
186-
...
187-
https: true
188-
...
189-
);
190-
```
191-
192162
## History
193163

194164
Due to the discussion [here](https://github.com/aspnet/JavaScriptServices/pull/1726), it was decided to not be included in the Microsoft owned package.

0 commit comments

Comments
 (0)