瀏覽代碼

fix: set default title to Violentmonkey

Gerald 6 年之前
父節點
當前提交
5875974d58
共有 1 個文件被更改,包括 10 次插入3 次删除
  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',