huixisheng / huixisheng.github.com

前端开发者说,记录前端的故事
http://huixisheng.github.io/
12 stars 3 forks source link

碰到的问题解决 #106

Open huixisheng opened 3 years ago

huixisheng commented 3 years ago

dotenv 支持 array

URLS=["https://github.com/huixisheng", "https://huixisheng.github.io/nav/"]
typeof JSON.parse(process.env.URLS); // object
Array.isArray(JSON.parse(process.env.URLS))