stasis/ext-vite
最新稳定版本:0.1.1
Composer 安装命令:
composer require stasis/ext-vite
包简介
Vite extension for Stasis
README 文档
README
Stasis Vite Extension is an adapter that integrates Vite frontend build tool with Stasis.
Installation
Install the latest version with Composer:
composer require stasis/ext-vite
Configuration
Note
The configuration examples below show only the relevant configuration, omitting unrelated parts. For a full list of available configuration options refer to Stasis package documentation.
Plain Usage (Without Twig)
Register extension in your stasis.php configuration file:
<?php // file: stasis.php declare(strict_types=1); use Stasis\Config\ConfigInterface; use Stasis\Extension\Vite\StasisViteExtension; use Stasis\Router\Route\Route; use Stasis\Router\Router; return new class implements ConfigInterface { private readonly StasisViteExtension $vite; public function __construct() { $this->vite = StasisViteExtension::create( assetsSourcePath: __DIR__ . '/dist_assets/assets', manifestPath: __DIR__ . '/dist_assets/manifest.json', assetsRoutePath: '/assets', ); } public function extensions(): iterable { return [$this->vite]; } public function routes(): iterable { return [ new Route('/', $this->renderHome(...), 'home'), ]; } private function renderHome(Router $router, array $parameters): string { return <<<HTML <!DOCTYPE html> <html> <head> {$this->vite->assetMapper->import('src/main.js')} </head> <body> <img src="{$this->vite->assetMapper->path('src/logo.svg')}"></img> </body> </html> HTML; } };
Usage with Twig Extension
If you're using Twig, register the extension and enable Twig integration:
<?php // file: stasis.php declare(strict_types=1); use Stasis\Config\ConfigInterface; use Stasis\Extension\Vite\StasisViteExtension; use Stasis\Router\Route\Route; use Twig\Environment; use Twig\Loader\FilesystemLoader; return new class implements ConfigInterface { private readonly Environment $twig; public function __construct() { $loader = new FilesystemLoader(); $loader->addPath(__DIR__ . '/templates'); $this->twig = new Environment($loader); } public function extensions(): iterable { return [ StasisViteExtension::create( assetsSourcePath: __DIR__ . '/dist_assets/assets', manifestPath: __DIR__ . '/dist_assets/manifest.json', assetsRoutePath: '/assets', )->withTwig($this->twig), ]; } public function routes(): iterable { return [ new Route('/', fn() => $this->twig->render('home.html.twig'), 'home'), ]; } };
In your Twig templates, the next functions are available:
asset_import- to import your entry point assets;asset_path- to get the path to a specific asset.
{# file: home.html.twig #} <!DOCTYPE html> <html> <head> {{ asset_import('src/main.js') }} </head> <body> <img src="{{ asset_path('src/logo.svg') }}"> </body> </html>
Note
Asset paths should be relative to your Vite project root, as they appear in the manifest file.
Credits
Volodymyr Stelmakh
Licensed under the MIT License. See LICENSE for more information.
统计信息
- 总下载量: 3
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 3
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-03-23