itiden / laravel-polywarp
dev-main
2025-06-11 12:54 UTC
Requires
- laravel/framework: ^12.10
Requires (Dev)
- carthage-software/mago: ^0.23.0
- orchestra/testbench: ^10.2
- pestphp/pest: ^3.8
This package is not auto-updated.
Last update: 2025-06-11 13:18:30 UTC
README
Keep your translations in sync between your laravel backend and frontend.
Fully typed.
Installation
composer require itiden/laravel-polywarp
then install the vite run plugin (or import it from ./vendor/itiden/laravel-polywarp/vite-plugin/vite-plugin-polywarp
):
npm install --save-dev vite-plugin-polywarp
And then finally specify the plugin in your vite config:
import { polywarp } from "vite-plugin-run"; export default defineConfig({ plugins: [ // ... polywarp(), ], });