#javascript #symfony #assets #webpack-encore
Вопрос:
Я действительно новичок в PHP, Symfony или Encore и не могу найти проблему в своей конфигурации (несмотря на поиск в Google и на этом сайте).
Вот в чем проблема (я работаю над базовой конфигурацией проекта symfony) :
У меня есть несколько файлов .js в папке «активы».
Если я создам эти ресурсы в режиме prod с помощью : yarn run encore prod
, они будут сгенерированы нормально в общедоступной/сборке с их тегом управления версиями. И когда я запускаю «symfony serve», чтобы увидеть свой сайт локально, все работает нормально.
Однако, если я попытаюсь сгенерировать эти ресурсы в режиме разработки ( yarn run encore dev
), приложение полностью проигнорирует их (даже если я очищу кэш и перезапущу сервер).
Мой файл .env.local указывает на среду «dev» (как и мой файл .env). Я попытался изменить «.enableVersioning(Encore.isProduction())» на «.enableVersioning()» в моем webpack.config.js файл, чтобы ресурсы были сгенерированы с тегом версии даже dev, но даже так они игнорируются в моем коде.
Вот мой файл webpack.config :
const Encore = require('@symfony/webpack-encore');
// Manually configure the runtime environment if not already configured yet by the "encore" command.
// It's useful when you use tools that rely on webpack.config.js file.
if (!Encore.isRuntimeEnvironmentConfigured()) {
Encore.configureRuntimeEnvironment(process.env.NODE_ENV || 'dev');
}
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
*
* Each entry will result in one JavaScript file (e.g. app.js)
* and one CSS file (e.g. app.css) if your JavaScript imports CSS.
*/
.addEntry('app', './assets/app.js')
.addEntry('projet', './assets/projet.js')
.addEntry('categorie', './assets/categorie.js')
.addEntry('utilisateur', './assets/utilisateur.js')
.addEntry('saisie', './assets/saisie.js')
.addEntry('recherche', './assets/recherche.js')
.addEntry('pagination', './assets/pagination.js')
.addEntry('home', './assets/home.js')
// enables the Symfony UX Stimulus bridge (used in assets/bootstrap.js)
.enableStimulusBridge('./assets/controllers.json')
// When enabled, Webpack "splits" your files into smaller pieces for greater optimization.
.splitEntryChunks()
// will require an extra script tag for runtime.js
// but, you probably want this, unless you're building a single-page app
.enableSingleRuntimeChunk()
/*
* FEATURE CONFIG
*
* Enable amp; 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())
.configureBabel((config) => {
config.plugins.push('@babel/plugin-proposal-class-properties');
})
// enables @babel/preset-env polyfills
.configureBabelPresetEnv((config) => {
config.useBuiltIns = 'usage';
config.corejs = 3;
})
// enables Sass/SCSS support
.enableSassLoader()
.enablePostCssLoader()
.copyFiles({
from: './assets/images',
// if versioning is enabled, add the file hash too
to: 'images/[path][name].[hash:8].[ext]',
// only copy files matching this pattern
pattern: /.(png|jpg|jpeg|svg)$/
})
.autoProvidejQuery()
;
module.exports = Encore.getWebpackConfig();
И как я вызываю эти скрипты в своем файле twig :
{% block user_javascripts %}
{{parent()}}
<script src="{{ asset('build/recherche.js') }}"></script>
{% endblock %}
С этим в конце раздела тела в моем файле base.html.twig :
{% block user_javascripts %}
{{ encore_entry_script_tags('app') }}
{% endblock %}
Do you know how I could use my assets in dev mode ?
Thank you for your help !