We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hey there. Could it be easy to add an extra option in src/interfaces/plugin-options.ts like this
src/interfaces/plugin-options.ts
excludeFrameworkTranslations: boolean,
and then in src/vite.ts to change it into
src/vite.ts
const excludeFrameworkTranslations = typeof options === 'string' ? options === 'lang' : options.excludeFrameworkTranslations ?? true const frameworkLangPath = excludeFrameworkTranslations ? '' : 'vendor/laravel/framework/src/Illuminate/Translation/lang/'.replace('/', path.sep)
This way we'll be able to optionally skip framework translations, and having this php_en.json generated.
php_en.json
The text was updated successfully, but these errors were encountered:
Go ahead and make a PR for that, I will check.
Thanks for the suggestion.
Sorry, something went wrong.
No branches or pull requests
Hey there.
Could it be easy to add an extra option in
src/interfaces/plugin-options.ts
like thisand then in
src/vite.ts
to change it into
This way we'll be able to optionally skip framework translations, and having this
php_en.json
generated.The text was updated successfully, but these errors were encountered: