Относительно свежий проект 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();