Managing CSS and JavaScript
Screencast
Do you prefer video tutorials? Check out the Webpack Encore screencast series.
Symfony ships with a pure-JavaScript library - called Webpack Encore - that makesworking with CSS and JavaScript a joy. You can use it, use something else, or justcreate static CSS and JS files in your public/
directory and include them in yourtemplates.
Webpack Encore
Webpack Encore is a simpler way to integrate Webpack into your application.It wraps Webpack, giving you a clean & powerful API for bundling JavaScript modules,pre-processing CSS & JS and compiling and minifying assets. Encore gives you professionalasset system that's a delight to use.
Encore is inspired by Webpacker and Mix, but stays in the spirit of Webpack:using its features, concepts and naming conventions for a familiar feel. It aimsto solve the most common Webpack use cases.
Tip
Encore is made by Symfony and works beautifully in Symfony applications.But it can be used in any PHP application and even with other server sideprogramming languages!
Encore Documentation
Getting Started
Adding more Features
- CSS Preprocessors: Sass, LESS, etc
- PostCSS and autoprefixing
- Enabling React.js
- Enabling Vue.js (vue-loader)
- Copying & Referencing Images
- Configuring Babel
- Source maps
- Enabling TypeScript (ts-loader)
Optimizing
- Versioning (and the entrypoints.json/manifest.json files)
- Using a CDN
- Async Code Splitting
- Preventing Duplication by "Splitting" Shared Code into Separate Files
- Creating a "Shared" entry for re-used modules
- Inlining files in CSS with Webpack URL Loader
Guides
- Using Bootstrap CSS & JS
- Creating Page-Specific CSS/JS
- jQuery and Legacy Applications
- Passing Information from Twig to JavaScript
- webpack-dev-server and Hot Module Replacement (HMR)
- Adding custom loaders & plugins
- Advanced Webpack Configuration
- Using Encore in a Virtual Machine