You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -108,7 +108,7 @@ require('copilot').setup({
108
108
cvs=false,
109
109
["."] =false,
110
110
},
111
-
copilot_node_command='node', -- Node version must be < 18
111
+
copilot_node_command='node', -- Node.js version must be > 16.x
112
112
server_opts_overrides= {},
113
113
})
114
114
```
@@ -192,12 +192,12 @@ require("copilot").setup {
192
192
193
193
### copilot_node_command
194
194
195
-
Use this field to provide the path to a specific node version such as one installed by nvm. Node version must be < 18. The LTS version of node (16.17.0) is recommended.
195
+
Use this field to provide the path to a specific node version such as one installed by nvm. Node.js version must be 16.x or newer.
196
196
197
197
Example:
198
198
199
199
```lua
200
-
copilot_node_command=vim.fn.expand("$HOME") .."/.config/nvm/versions/node/v16.14.2/bin/node", -- Node version must be < 18
200
+
copilot_node_command=vim.fn.expand("$HOME") .."/.config/nvm/versions/node/v16.14.2/bin/node", -- Node.js version must be > 16.x
0 commit comments