Я хотел бы использовать загрузчик с Webpack Encore в Symfony 4.1, но загрузчик не работает.В файле template / base.html.twig в этом посте я использовал несколько классов начальной загрузки, но это не учитывается, и я не понимаю, почему.
Я установил зависимости, необходимые для начальной загрузки с помощью пряжи:
yarn add bootstrap --dev
yarn add jquery --dev
yarn add popper.js --dev
template / base.html.twig
В этом файле я использовал функцию актива для учета файлов: build / app.scss и build / app.js
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>{% block title %}Welcome!{% endblock %}</title>
{% block stylesheets %}
<link rel="stylesheet" href="{{ asset('build/app.scss') }}">
{% endblock %}
</head>
<body>
{% block body %}
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="#">Navbar</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" ar$
<span class="navbar-toggler-icon"></span>
</button>
</nav>
{% endblock %}
{% block javascripts %}
<script src="{{ asset('build/app.js') }}"></script>
{% endblock %}
</body>
</html>
В двух следующих файлах я требовал и импортировал то, что мне нужно для начальной загрузки.
assets / js / app.js
require('../css/app.scss');
var $ = require('jquery');
require('bootstrap');
assets / css / app.scss
@import "~bootstrap/scss/bootstrap";
веб-пакет.config.js
В этом файле я использовал enableSassLoader () , чтобы активировать Sass, и autoProvidejQuery () , чтобы иметь доступ к jQuery какглобальная переменная.
var Encore = require('@symfony/webpack-encore');
Encore
// directory where compiled assets will be stored
.setOutputPath('public/build/')
// public path used by the web server to access the output path
.setPublicPath('/build')
// only needed for CDN's or sub-directory deploy
//.setManifestKeyPrefix('build/')
/*
* ENTRY CONFIG
*
* Add 1 entry for each "page" of your app
* (including one that's included on every page - e.g. "app")
*
* Each entry will result in one JavaScript file (e.g. app.js)
* and one CSS file (e.g. app.css) if you JavaScript imports CSS.
*/
.addEntry('app', './assets/js/app.js')
/*
* FEATURE CONFIG
*
* Enable & configure other features below. For a full
* list of features, see:
* https://symfony.com/doc/current/frontend.html#adding-more-features
*/
.cleanupOutputBeforeBuild()
.enableBuildNotifications()
.enableSourceMaps(!Encore.isProduction())
// enables hashed filenames (e.g. app.abc123.css)
.enableVersioning(Encore.isProduction())
// enables Sass/SCSS support
.enableSassLoader()
// uncomment if you use TypeScript
//.enableTypeScriptLoader()
// uncomment if you're having problems with a jQuery plugin
.autoProvidejQuery()
;
module.exports = Encore.getWebpackConfig();
Команда пряжа на бис dev строит все правильно.Но я не вижу темы начальной загрузки на экране.
Заранее спасибо,