Hello,
When I use the latest CLI and run netlify deploy --build --prod, it insists on using a Gatsby plugin that I no longer need in my build process. I’m using Astro, and I simply want to use my root netlify.toml file to instruct the CLI on which command to use for the build.
Here is my current netlify.toml:
[build]
base = "/"
publish = "dist/"
command = "npm run build"
[[plugins]]
package = "@netlify/plugin-lighthouse"
during the process the netlify.toml file being generated in ./.netlify/netlify.toml :
headers = []
[functions]
[functions."*"]
[[plugins]]
origin = "ui"
package = "@netlify/plugin-gatsby"
pinned_version = "3"
[plugins.inputs]
[[plugins]]
origin = "config"
package = "@netlify/plugin-lighthouse"
[plugins.inputs]
[build]
publish = "/Users/aaronmolina/Sites/PageLyft/astro-sellinghousebrokersllc/dist"
publishOrigin = "config"
commandOrigin = "config"
command = "npm run build"
base = "/Users/aaronmolina/Sites/PageLyft/astro-sellinghousebrokersllc"
[build.environment]
[build.processing]
[build.processing.css]
[build.processing.html]
[build.processing.images]
[build.processing.js]
[build.services]
[[redirects]]
from = "/stop-foreclosure/"
to = "/sell-my-house-fast/foreclosure/"
force = false
[redirects.query]
[redirects.conditions]
[redirects.headers]
[[redirects]]
from = "/testimonials/"
to = "/"
force = false
[redirects.query]
[redirects.conditions]
[redirects.headers]
[[redirects]]
from = "/our-company/"
to = "/about-us/"
force = false
[redirects.query]
[redirects.conditions]
[redirects.headers]
[[redirects]]
from = "/get-a-cash-offer-today/"
to = "/sell-my-house/"
force = false
[redirects.query]
[redirects.conditions]
[redirects.headers]
[[redirects]]
from = "/how-we-buy-houses/"
to = "/"
force = false
[redirects.query]
[redirects.conditions]
[redirects.headers]
[[redirects]]
from = "/how-it-works-old/"
to = "/how-it-works/"
force = false
[redirects.query]
[redirects.conditions]
[redirects.headers]
[[redirects]]
from = "/reviews/"
to = "/"
force = false
[redirects.query]
[redirects.conditions]
[redirects.headers]
[[redirects]]
from = "/team/"
to = "/about-us/"
force = false
[redirects.query]
[redirects.conditions]
[redirects.headers]
Could you please help me resolve this issue? Also, where can I view the Lighthouse scores?
Thank you!