-
Notifications
You must be signed in to change notification settings - Fork 250
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
lmeysel
committed
Jul 27, 2023
1 parent
bc99916
commit 3a71ad5
Showing
16 changed files
with
7,693 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import { Plugin } from 'vite'; | ||
export interface ZiggyPluginConfig { | ||
/** | ||
* Issue the command using laravel sail. Use 'auto' to automatically determine if sails is available and running. | ||
*/ | ||
sail?: boolean | 'auto'; | ||
/** | ||
* Whether to output TS declarations. Use 'only' to emit only declartion and no routes file. | ||
*/ | ||
declarations?: boolean | 'only'; | ||
/** | ||
* Destination path where ziggy output files should be placed. | ||
*/ | ||
destination?: string; | ||
log?: boolean; | ||
delay?: number; | ||
} | ||
export default function ZiggyPlugin(config: ZiggyPluginConfig): Plugin; |
Oops, something went wrong.