itiden/laravel-polywarp

dev-main 2025-06-11 12:54 UTC

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(),
  ],
});