mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-28 19:10:40 +00:00
- fixed setup wizard
This commit is contained in:
@@ -418,7 +418,7 @@ class SetupWizardController extends Controller
|
|||||||
$user
|
$user
|
||||||
->settings()
|
->settings()
|
||||||
->create([
|
->create([
|
||||||
'storage_capacity' => get_setting('storage_default'),
|
'storage_capacity' => get_setting('storage_default') ?? 5,
|
||||||
'avatar' => store_avatar($request, 'avatar'),
|
'avatar' => store_avatar($request, 'avatar'),
|
||||||
'name' => $request->name,
|
'name' => $request->name,
|
||||||
]);
|
]);
|
||||||
|
|||||||
Vendored
+2
-2
@@ -28,7 +28,7 @@ mix.js('resources/js/main.js', 'public/js')
|
|||||||
output: {
|
output: {
|
||||||
chunkFilename: '[name].js?id=[chunkhash]',
|
chunkFilename: '[name].js?id=[chunkhash]',
|
||||||
},
|
},
|
||||||
devtool: 'inline-source-map',
|
//devtool: 'inline-source-map',
|
||||||
devServer: {
|
devServer: {
|
||||||
clientLogLevel: 'none'
|
clientLogLevel: 'none'
|
||||||
}
|
}
|
||||||
@@ -38,7 +38,7 @@ mix.js('resources/js/main.js', 'public/js')
|
|||||||
host: '192.168.1.198',
|
host: '192.168.1.198',
|
||||||
port: '8080'
|
port: '8080'
|
||||||
},
|
},
|
||||||
}*/
|
})*/
|
||||||
.disableNotifications();
|
.disableNotifications();
|
||||||
|
|
||||||
if (mix.inProduction()) {
|
if (mix.inProduction()) {
|
||||||
|
|||||||
Reference in New Issue
Block a user