Bläddra i källkod

fix: set default title to Violentmonkey

Gerald 6 år sedan
förälder
incheckning
5875974d58
1 ändrade filer med 10 tillägg och 3 borttagningar
  1. 10 3
      scripts/webpack.conf.js

+ 10 - 3
scripts/webpack.conf.js

@@ -29,11 +29,14 @@ const pages = {
   },
   'background/index': {
     entry: './src/background',
-    html: {},
+    html: {
+      title: 'Violentmonkey',
+    },
   },
   'options/index': {
     entry: './src/options',
     html: {
+      title: 'Violentmonkey',
       js: [
         '/public/lib/zip.js/zip.js',
       ],
@@ -41,11 +44,15 @@ const pages = {
   },
   'confirm/index': {
     entry: './src/confirm',
-    html: {},
+    html: {
+      title: 'Violentmonkey',
+    },
   },
   'popup/index': {
     entry: './src/popup',
-    html: {},
+    html: {
+      title: 'Violentmonkey',
+    },
   },
   injected: {
     entry: './src/injected',