Best practice for managing env's? #83
-
Is there a recommended pattern for support an env specific |
Beta Was this translation helpful? Give feedback.
Answered by
jacksteamdev
Jul 14, 2021
Replies: 1 comment 4 replies
-
You can extend the manifest using export default {
...rollupConfig,
plugins: [
chromeExtension({
extendManifest: {
icons: { ... } // Overwrite just the icons object
}
}),
...plugins
],
} I'd like to support this better in the future! Right now the manifest file name is validated as |
Beta Was this translation helpful? Give feedback.
4 replies
Answer selected by
areohbe
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can extend the manifest using
options.extendManifest
. This option will merge the supplied object with the manifest data.I'd like to support this better in the future! Right now the manifest file name is validated as
manifest.json
, which is probably too strict. Would be nice to support other file formats too, like TS.