export default defineConfig({
plugins: [
laravel({
input: [
// 'resources/css/app.css',
'resources/js/app.js',
'vendor/konekt/appshell/src/resources/assets/js/appshell.standalone.js', // additional JS file
'vendor/konekt/appshell/src/resources/assets/sass/appshell.sass', // Sass file
],
refresh: true,
}),
],
});
I would like to ask you to upload the Application boilerplate for Laravel 11 using vite settings to Github.
I think that's why we couldn't test your package.
Installed Laravel 11
Installed the laravel/breeze package
Installed your package.
Used Variant 2 - Flexible for the model
(by the way, you have an error there and instead
$this->app->concord->registerModel(\Konekt\User\Contracts\User::class, \App\User::class);necessary:
$this->app->concord->registerModel(\Konekt\User\Contracts\User::class, \App\Models\User::class);)Created a user
Your example uses Laravel Mix
Now, most everyone uses Vite.
Therefore, it is necessary to edit vite.config.js
But nothing happened in the end (
I would like to ask you to upload the Application boilerplate for Laravel 11 using vite settings to Github.
I think that's why we couldn't test your package.