当我在 Vue JS 项目上 运行 npm 运行 服务器时出错
Getting error when I run npm run server on Vue JS project
我使用 Vue Cli vue add pwa
在这个项目中添加了 PWA。
它安装了两个包
"@vue/cli-plugin-pwa": "~5.0.0",
"register-service-worker": "^1.7.2",
但是当我 运行 npm run serve / npm run build
它显示如下错误。
INFO Starting development server...
0% compiling ERROR TypeError: Cannot read property 'tap' of undefined
"@vue/cli-plugin-pwa": "v5"
有一些问题
将 @vue/cli-plugin-pwa
降级为 "v4.5.15"
终端中的第一个 运行 npm uninstall @vue/cli-plugin-pwa
然后
运行 npm i -D @vue/cli-plugin-pwa@4
这将安装最新版本的版本 4
我使用 Vue Cli vue add pwa
在这个项目中添加了 PWA。
它安装了两个包
"@vue/cli-plugin-pwa": "~5.0.0",
"register-service-worker": "^1.7.2",
但是当我 运行 npm run serve / npm run build
它显示如下错误。
INFO Starting development server...
0% compiling ERROR TypeError: Cannot read property 'tap' of undefined
"@vue/cli-plugin-pwa": "v5"
有一些问题
将 @vue/cli-plugin-pwa
降级为 "v4.5.15"
终端中的第一个 运行 npm uninstall @vue/cli-plugin-pwa
然后
运行 npm i -D @vue/cli-plugin-pwa@4
这将安装最新版本的版本 4