Skip to content

Latest commit

 

History

History
110 lines (80 loc) · 3.54 KB

frontend.rst

File metadata and controls

110 lines (80 loc) · 3.54 KB

Managing CSS and JavaScript

Symfony ships with a pure-JavaScript library - called Webpack Encore - that makes working with CSS and JavaScript a joy. You can use it, use something else, or just create static CSS and JS files in your public/ directory and include them in your templates.

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 professional asset 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 aims to solve the most common Webpack use cases.

Tip

Encore is made by Symfony and works beautifully in Symfony applications. But it can easily be used in any application... in any language!

Encore Documentation

Getting Started

Adding more Features

Optimizing

Guides

Issues & Questions

Full API

Assetic

Assetic is a pure PHP library that helps to process & optimize your assets (similar to Encore). Even though we recommend using Encore, Assetic still works great. For a comparison, see :doc:`/frontend/encore/versus-assetic`.

For more about Assetic, see :doc:`/frontend/assetic`.

Other Front-End Articles

.. toctree::
    :hidden:
    :glob:

    frontend/encore/installation
    frontend/encore/simple-example
    frontend/encore/*

.. toctree::
    :maxdepth: 1
    :glob:

    frontend/*