Skip to content

Commit

Permalink
Fixed several issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexey Shvorak committed Nov 1, 2020
1 parent 4cbff8d commit 9de23b8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 8 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ npm-debug.log*
*.zip
*.crx
*.pem
.DS_Store
6 changes: 2 additions & 4 deletions config/webpack.base.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ module.exports = (options) => {
output: {
path: paths.bundle,
publicPath: "/",
filename: isDevelopment ? "[name].js" : "[name]-[hash].js",
filename: "[name].js" ,
},
module: {
rules: [
Expand All @@ -43,9 +43,7 @@ module.exports = (options) => {
options: {
url: false,
modules: {
localIdentName: isDevelopment
? "[name]__[local]_[hash:base64:5]"
: "[hash:base64:12]",
localIdentName: "[name]__[local]_[hash:base64:5]",
},
},
},
Expand Down
4 changes: 0 additions & 4 deletions sources/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,6 @@
"activeTab",
"<all_urls>"
],
"background": {
"scripts": ["worker.js"],
"persistent": false
},
"browser_action": {
"default_popup": "index.html",
"default_icon": {
Expand Down

0 comments on commit 9de23b8

Please sign in to comment.