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.
1 parent 05a9b44 commit 0eca63aCopy full SHA for 0eca63a
README.md
@@ -38,6 +38,17 @@ php artisan kui-fortify:install blade # This command will publish laravel/fortif
38
39
# then
40
npm install && npm run dev # or yarn && yarn dev
41
+
42
+# Laravel mix will compile successfully, but with 1 warning `Module not found: Error: Can't resolve '../../lang'`.
43
+# It will work but you can fix it by remove trycatch in `app.js` and import lang file like this:
44
45
+# laravel 9
46
+# resolve: (lang) => import(`../../lang/${lang}.json`),
47
48
+# laravel < 9
49
+# resolve: (lang) => import(`../lang/${lang}.json`),
50
51
+# Until we fix it.
52
```
53
54
4. Configure your database.
0 commit comments