correct manifest and artifacts dir

This commit is contained in:
Nicola Zambello 2020-03-08 13:14:43 +01:00
parent 8be2a4ce0f
commit ce290860b4
3 changed files with 7 additions and 2 deletions

2
.gitignore vendored
View file

@ -22,4 +22,4 @@ npm-debug.log*
yarn-debug.log* yarn-debug.log*
yarn-error.log* yarn-error.log*
artifacts build/artifacts

View file

@ -9,6 +9,11 @@
}, },
"browser_action": { "browser_action": {
"default_icon": "logo192.png", "default_icon": "logo192.png",
"theme_icons": [{
"light": "logo192.png",
"dark": "logo192.png",
"size": 192
}],
"default_title": "TimeConvert", "default_title": "TimeConvert",
"default_popup": "index.html", "default_popup": "index.html",
"browser_style": true "browser_style": true

View file

@ -1,6 +1,6 @@
module.exports = { module.exports = {
sourceDir: "./build", sourceDir: "./build",
artifactsDir: "./artifacts", artifactsDir: "./build/artifacts",
build: { build: {
overwriteDest: true overwriteDest: true
} }