You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm playing around with this package and I started getting the following error Cannot redefine existing key 'plugins.package'..
Build will only work now if I remove all [[plugins]] from netlify.toml. Do you know what might be causing this?
I also added plugins via the Netlify dashboard, so I'm guessing they're initialized in two places now.
Also, when I updated the site keywords, I started getting a type error. The not so elegant fix was to change export default config as Config; to export default config as unknown as Config; in src/lib/config.ts. It was due to the keywords being added as an array instead keyword: <value>.
The text was updated successfully, but these errors were encountered:
Hello,
I'm playing around with this package and I started getting the following error
Cannot redefine existing key 'plugins.package'.
.Build will only work now if I remove all
[[plugins]]
fromnetlify.toml
. Do you know what might be causing this?I also added plugins via the Netlify dashboard, so I'm guessing they're initialized in two places now.
Also, when I updated the site keywords, I started getting a
type
error. The not so elegant fix was to changeexport default config as Config;
toexport default config as unknown as Config;
insrc/lib/config.ts
. It was due to the keywords being added as an array insteadkeyword: <value>
.The text was updated successfully, but these errors were encountered: