Каждый раз, когда я пытаюсь запустить вызов на бис, он не завершается и зависает на ...
$ /vagrant/app/node_modules/.bin/encore dev
Running webpack ...
Я удалил node_modules
и много раз переустанавливался, следуя документации Symfony.Пробовал использовать только npm
, а также пытался использовать только yarn
.Любые предложения будут высоко ценится.Я включил package.json
и webpack.config.js
, если что-то еще нужно, чтобы помочь устранить неполадки, пожалуйста, дайте мне знать.
package.json
{
"devDependencies": {
"@symfony/webpack-encore": "^0.20.1",
"node-sass": "^4.9.0",
"sass-loader": "^7.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('/app/build')
.setManifestKeyPrefix('build')
.cleanupOutputBeforeBuild()
.enableSourceMaps(!Encore.isProduction())
// uncomment if you use Sass/SCSS files
.enableSassLoader()
// uncomment to create hashed filenames (e.g. app.abc123.css)
// .enableVersioning(Encore.isProduction())
// uncomment to define the assets of the project
// .addEntry('js/app', './assets/js/app.js')
.addStyleEntry('css/style', './assets/sass/style.scss')
// .addStyleEntry('css/print', './assets/sass/print.scss')
// uncomment for legacy applications that require $/jQuery as a global variable
// .autoProvidejQuery()
;
module.exports = Encore.getWebpackConfig();