Help us continue to build and maintain our open source projects. We’re a small team of independent developers and every little bit helps.
Compiling Assets in Sage with Vite
Vite is front-end build tool used in Sage.
Sage also uses the Laravel Vite plugin, along with Laravel's Vite facade for referencing Vite assets in PHP and Blade template files. Because of this, Laravel's Vite documentation also applies to Sage.
Available build commands
npm run build— Build assetsnpm run dev— Start dev server (requires updatingvite.config.jswith your local dev URL)
Theme assets
What files are built and how is controlled from the vite.config.js file in the root of the theme.
The configuration will generate the following files:
app.css- The primary stylesheet for the theme.app.js- The primary JavaScript file for the theme.editor.css- Styles used by the editor when creating/editing posts.editor.js- JavaScript for the block editor, i.e. block styles and variants.
It will also copy any files in the images or fonts directories under /resources/assets/ into the public directory with the other compiled files, but does not optimize or compress them.
Assets in Blade template files
Use the Vite::asset method to call assets from Blade template files:
<img src="{{ Vite::asset('resources/images/example.svg') }}">
Assets in CSS
You can reference images in CSS using the included Vite alias for images.
.background {
background-image: url("@images/example.svg");
}
Assets in PHP
Get the URL of the asset
use Illuminate\Support\Facades\Vite;
$asset = Vite::asset('resources/images/example.svg');
Get the contents of the asset
use Illuminate\Support\Facades\Vite;
$asset = Vite::content('resources/images/example.svg');
Last updated