有没有办法配置 Gatsbyjs,以便在 Gatsby 中构建其他任何东西之前运行 python 脚本?
1 回答
冉冉说
TA贡献1877条经验 获得超1个赞
假设您使用 npm,您可以使用npm-scripts在常用 npm 命令之前和之后运行任意脚本。
在您的情况下,您可能会做类似的事情(未经测试):
"scripts": {
"prestart": "python main.py",
"start": "gatsby"
},
添加回答
举报
0/150
提交
取消