在我最近的项目中,我使用 gsap 和 parcel-bundler 制作了一个动画网站。当我想运行它时,我会输入parcel index.html
or npm run dev
,它会在端口 1234 上启动一个服务器,使其可以通过http://localhost:1234/访问。
谁能告诉我如何将它部署到 netlify 或 Heroku?
我的 package.json 文件看起来像这样
{
"name":"expportfolio",
"version":"1.0.0",
"description":"",
"main":"app.js",
"scripts":{
"dev":"parcel index.html",
"build":"parcel build index.html"
},
"author":"",
"license":"ISC",
"devDependencies":{
"cssnano":"^4.1.10",
"sass":"^1.26.7"
},
"dependencies":{
"@dogstudio/highway":"^2.2.1",
"gsap":"^3.3.0"
}
}