我想在 Symfony 5 中使用 Vue js,但是当 运行 这个命令 "yarn encore dev-server" 时我遇到了一个错误
I want to use Vue js with Symfony 5, but I faced an error when run this command "yarn encore dev-server"
我 运行 Symfony 5 中的命令 yarn encore dev-server
和 Vue.js。我遇到以下错误:
PS C:\Apache24\htdocs\api_example> yarn encore dev-server
yarn run v1.22.5
$ C:\Apache24\htdocs\api_example\node_modules\.bin\encore dev-server
Running webpack-dev-server ...
RECOMMEND To create a smaller (and CSP-compliant) build, see https://symfony.com/doc/current/frontend/encore/vuejs.html#runtime-compiler-build
**[webpack-cli] Invalid options object. Dev Server has been initialized using an options object that does not match the API schema.
- options.client has an unknown property 'host'. These properties are valid:
object { logging?, overlay?, progress?, webSocketTransport?, webSocketURL? }**
error Command failed with exit code 2.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
Webpack Dev Server 刚刚发布了一个新版本:v4.0.0-rc.0。它与 Webpack Encore 的(默认设置)不兼容。
你可以坚持v4.0.0-beta.3一段时间,直到Webpack Encore更新支持新版本。
使用 yarn add webpack-dev-server@v4.0.0-beta.3 --dev
以使用此确切版本。
关注this issue看看有没有进展,或者想快速修复使用新的webpack-dev-server
.
我 运行 Symfony 5 中的命令 yarn encore dev-server
和 Vue.js。我遇到以下错误:
PS C:\Apache24\htdocs\api_example> yarn encore dev-server
yarn run v1.22.5
$ C:\Apache24\htdocs\api_example\node_modules\.bin\encore dev-server
Running webpack-dev-server ...
RECOMMEND To create a smaller (and CSP-compliant) build, see https://symfony.com/doc/current/frontend/encore/vuejs.html#runtime-compiler-build
**[webpack-cli] Invalid options object. Dev Server has been initialized using an options object that does not match the API schema.
- options.client has an unknown property 'host'. These properties are valid:
object { logging?, overlay?, progress?, webSocketTransport?, webSocketURL? }**
error Command failed with exit code 2.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
Webpack Dev Server 刚刚发布了一个新版本:v4.0.0-rc.0。它与 Webpack Encore 的(默认设置)不兼容。
你可以坚持v4.0.0-beta.3一段时间,直到Webpack Encore更新支持新版本。
使用 yarn add webpack-dev-server@v4.0.0-beta.3 --dev
以使用此确切版本。
关注this issue看看有没有进展,或者想快速修复使用新的webpack-dev-server
.