Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Assets (CSS, JS, bilder) i Symfony med Twig #45

Open
mosbth opened this issue Apr 1, 2022 · 0 comments
Open

Assets (CSS, JS, bilder) i Symfony med Twig #45

mosbth opened this issue Apr 1, 2022 · 0 comments
Assignees
Labels
documentation Improvements or additions to documentation solution exists

Comments

@mosbth
Copy link
Member

mosbth commented Apr 1, 2022

För att jobba på rätt sätt med statiska webbresurser såsom stylesheets, javascript-filer och bilder så använder vi säkrast funktionen asset() i våra Twig templatefiler.

Vi tänker oss att vi har en katalogstruktur som ser ut så här.

2022-04-01_14:56:31_212x263

Så här kan det se ut i base.html.twig för att referera till ovan resurser.

        <link rel="icon" href="{{ asset("favicon.ico") }}">
        <link rel="stylesheet" href="{{ asset("css/style.css") }}"/>

Så här kan det se ut när man inkluderar och länkar till en bild.

<img src="{{ asset("img/mos.png") }}" width="200px" alt="mos">

<a href="{{ asset("img/mos.png") }}">View the image</a>

Installera

För att lyckas med detta behöver du dels installera modulen asset och sedan behöver du konfigurera bort en referens till filen manifest.json, då blir det enklast att komma igång med användandet av asset.

Installera med composer.

composer require symfony/asset

Kommentera bort referensen till manifest.json i filen config/packages/webpack_encore.yaml.

framework:
    assets:
        #json_manifest_path: '%kernel.project_dir%/public/build/manifest.json'

Om du missar kommentera bort manifest-filen får du troligen felmeddelandet.

An exception has been thrown during the rendering of a template ("Asset manifest file "public/build/manifest.json" does not exist.").

Läs mer

@mosbth mosbth added documentation Improvements or additions to documentation solution exists labels Apr 1, 2022
@mosbth mosbth self-assigned this Apr 1, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Improvements or additions to documentation solution exists
Projects
None yet
Development

No branches or pull requests

1 participant