對於Windows,我的節點腳本應該是這樣的:如何以跨平臺的方式設置環境變量?
"scripts": {
"start-docs": "SET NODE_ENV=development&&babel-node ./docs/Server.js"
}
但在Linux上沒有SET
,所以這將是這樣的:
"scripts": {
"start-docs": "NODE_ENV=development&&babel-node ./docs/Server.js"
}
有沒有在聲明環境變量的方式一種一致且跨平臺的方式?