diff options
author | FrostyBiscuit <[email protected]> | 2025-02-16 13:04:17 +0100 |
---|---|---|
committer | FrostyBiscuit <[email protected]> | 2025-02-16 13:04:17 +0100 |
commit | d0e4dcc6ef057f4c680838d4f8ac8e099a166225 (patch) | |
tree | 103aae098272bee55b337e53e7436864a9cb8770 /web-ext-config.mjs |
Initial push with version 0.1.1
Diffstat (limited to 'web-ext-config.mjs')
-rw-r--r-- | web-ext-config.mjs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/web-ext-config.mjs b/web-ext-config.mjs new file mode 100644 index 0000000..c2d7dd5 --- /dev/null +++ b/web-ext-config.mjs @@ -0,0 +1,19 @@ +import "dotenv/config";
+
+export default {
+ artifactsDir: "builds",
+ ignoreFiles: [
+ "node_modules/",
+ ".git/",
+ ".gitignore",
+ ".env"
+ ],
+ build: {
+ overwriteDest: true
+ },
+ sign: {
+ apiKey: process.env.FIREFOX_API_KEY,
+ apiSecret: process.env.FIREFOX_API_SECRET,
+ channel: "unlisted"
+ }
+};
\ No newline at end of file |