4 lines
135 B
Bash
4 lines
135 B
Bash
|
|
#!/usr/bin/env bash
|
|||
|
|
# 将 Node.js(~/.local/node)加入 PATH,供 npm run dev 使用
|
|||
|
|
export PATH="${HOME}/.local/node/bin:${PATH}"
|