Я пытался следовать инструкциям из документации, но это не работает.
Документация: https://symfony.com/doc/current/frontend/encore/simple-example.html
Код, который у меня есть:
активы / JS / app.js
require('./assets/css/app.scss');
const $ = require('jquery');
в webpackconfig
.setOutputPath('public/build/')
.setPublicPath('/build')
.addEntry('js', './assets/js/app.js')
.enableSassLoader()
.autoProvidejQuery()
const $ = require('jquery');
base.html.twig
{% block stylesheets %}
<link rel="stylesheet" href="{{ asset('build/app.scss') }}">
<link rel="stylesheet" href="{{ asset('~/bootstrap/css/bootstrap.css') }}">
{% endblock %}
И сообщение об ошибке в моей консоли
127.0.0.1/:7 GET http://127.0.0.1:8000/~/bootstrap/css/bootstrap.css
net::ERR_ABORTED 404 (Not Found)
127.0.0.1/:6 GET http://127.0.0.1:8000/build/app.scss net::ERR_ABORTED 404
(Not Found)
app.js:11 Uncaught Error: Cannot find module ".assetscssapp.scss"
at webpackMissingModule (app.js:11)
at Object../assets/js/app.js (app.js:11)
at __webpack_require__ (bootstrap 63d062e87dc6edab6451:19)
at bootstrap 63d062e87dc6edab6451:62
at bootstrap 63d062e87dc6edab6451:62
Спасибо!