From 7dd6c37332e0c56246405a7aa48ce71745513abb Mon Sep 17 00:00:00 2001 From: Wayne Date: Sun, 12 Nov 2023 04:58:19 +0800 Subject: [PATCH] =?UTF-8?q?=E7=A7=BB=E9=99=A4=E4=B8=8D=E5=BF=85=E8=A6=81?= =?UTF-8?q?=E7=9A=84=E6=AA=94=E6=A1=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .browserslistrc | 3 --- babel.config.js | 15 --------------- vue.config.js | 38 -------------------------------------- 3 files changed, 56 deletions(-) delete mode 100644 .browserslistrc delete mode 100644 babel.config.js delete mode 100644 vue.config.js diff --git a/.browserslistrc b/.browserslistrc deleted file mode 100644 index 214388f..0000000 --- a/.browserslistrc +++ /dev/null @@ -1,3 +0,0 @@ -> 1% -last 2 versions -not dead diff --git a/babel.config.js b/babel.config.js deleted file mode 100644 index 291e134..0000000 --- a/babel.config.js +++ /dev/null @@ -1,15 +0,0 @@ -module.exports = { - presets: [ - '@vue/cli-plugin-babel/preset' - ], - plugins: [ - [ - "import", - { - "libraryName": "vant", - "libraryDirectory": "es", - "style": true - } - ] - ] -} diff --git a/vue.config.js b/vue.config.js deleted file mode 100644 index 5d41a70..0000000 --- a/vue.config.js +++ /dev/null @@ -1,38 +0,0 @@ -module.exports = { - devServer: { - disableHostCheck: true, - }, - publicPath: ["production", "stage", "u168"].includes(process.env.VUE_ENV) - ? "/home" - : "/home", - outputDir: - ["production", "u168"].includes(process.env.VUE_ENV) - ? "../ecard_api/public/home" - : "./dist", - pwa: { - name: "UTel電子名片", - short_name: "UTel", - background_color: "#3367D6", - display: "browser", - icons: [ - { - src: "/img/icons/android-chrome-192x192.png", - type: "image/png", - sizes: "192x192", - }, - { - src: "/img/icons/android-chrome-512x512.png", - type: "image/png", - sizes: "512x512", - }, - ], - themeColor: "#4DBA88", - // msTileColor: '#000000', - // appleMobileWebAppCapable: 'yes', - // appleMobileWebAppStatusBarStyle: 'black', - workboxPluginMode: "GenerateSW", - workboxOptions: { - skipWaiting: true, - }, - }, -};