Skip to content

Commit aa29418

Browse files
committed
sdfs
1 parent b3a5afd commit aa29418

File tree

5 files changed

+12
-46
lines changed

5 files changed

+12
-46
lines changed

coreui/src/views/media/Media.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ export default {
255255
croppModal: false,
256256
cropper: null,
257257
croppUrl: '',
258-
changePort: 'localhost:8080',
258+
changePort: 'localhost:8000',
259259
}
260260
},
261261
computed: {

laravel/.env.example

Lines changed: 0 additions & 44 deletions
This file was deleted.

laravel/config/filesystems.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@
5050

5151
'public' => [
5252
'driver' => 'local',
53-
'root' => public_path() . '/../../coreui/public/public',
53+
//'root' => public_path() . '/../../coreui/public/public',
54+
'root' => public_path('public'),
5455
'url' => env('APP_URL').'/public',
5556
'visibility' => 'public',
5657
],

laravel/package-lock.json

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

laravel/routes/web.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,6 @@
1414
//Route::get('/{any}', function () {
1515
// return view('coreui.homepage');
1616
//})->where('any', '.*');
17+
Route::get('/{any}', function () {
18+
return view('coreui.homepage');
19+
})->where('any', '.*');

0 commit comments

Comments
 (0)