首页 > 解决方案 > Symfony Webpack:无法从 Webpack 中找到入口点文件

问题描述

一个比较新鲜的 Symfony 4.1.7 项目安装 Webpack Encore 后抛出错误

在渲染模板期间抛出异常(“无法从 Webpack 中找到入口点文件:文件“.../public/build/entrypoints.json”不存在。”)

{{ encore_entry_link_tags('app') }} 启动时模板包含的位置 http://127.0.0.1:8000/

我错过了什么?

$ yarn encore dev
Running webpack ...

 DONE  Compiled successfully in 1974ms

 I  3 files written to public\build
Done in 3.33s.

.../public/build包含

app.css
app.js
manifest.json

本地 Symfony 版本:

symfony/webpack-encore-bundle       v1.0.0
symfony/webpack-encore-pack         v1.0.3

webpack.config.js:

var Encore = require('@symfony/webpack-encore');

Encore
    // the project directory where compiled assets will be stored
    .setOutputPath('public/build/')
    // the public path used by the web server to access the previous directory
    .setPublicPath('/build')
    .cleanupOutputBeforeBuild()
    .enableSourceMaps(!Encore.isProduction())
    // uncomment to create hashed filenames (e.g. app.abc123.css)
    // .enableVersioning(Encore.isProduction())

    // uncomment to define the assets of the project
    .addEntry('app', './assets/js/app.js')
//     .addEntry('js/app', './assets/js/app.js')
//     .addStyleEntry('css/app')
//     .addStyleEntry('css/app', './assets/css/app.scss')

    // uncomment if you use Sass/SCSS files
    // .enableSassLoader()

    // uncomment for legacy applications that require $/jQuery as a global variable
     .autoProvidejQuery()
;

module.exports = Encore.getWebpackConfig();

标签: phpsymfonywebpack

解决方案


在 package.json 中为 @symfony/webpack-encore 更新你的版本约束到 ^0.21.0

...
"devDependencies": {
    "@symfony/webpack-encore": "^0.21.0",
...

将 .enableSingleRuntimeChunk() 添加到您的 webpack.config.js

...
.addEntry('app', './assets/js/app.js')
//     .addEntry('js/app', './assets/js/app.js')
//     .addStyleEntry('css/app')
//     .addStyleEntry('css/app', './assets/css/app.scss')
.enableSingleRuntimeChunk()
...

然后运行 ​​yarn upgrade 或 yarn install

PS:如果你安装了 symfony/webpack-encore-bundle,你可以删除 symfony/webpack-encore-pack

composer remove symfony/webpack-encore-pack

推荐阅读