Skip to content

Commit 870b1b9

Browse files
committed
new build
1 parent d9ea9c3 commit 870b1b9

18 files changed

+4699
-67
lines changed

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/.phpunit.cache
22
/node_modules
3-
/public/build
43
/public/hot
54
/public/storage
65
/storage/*.key

public/build/assets/app-backend-7d963dee.js

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/build/assets/app-backend-f046408a.css

+11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/build/assets/app-frontend-a8c74d3e.js

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/build/assets/app-frontend-da3b9b9b.css

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
183 KB
Binary file not shown.
Binary file not shown.
62.2 KB
Binary file not shown.
Binary file not shown.
386 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

public/build/manifest.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@
2323
"file": "assets/fa-brands-400-2ef6fdde.ttf",
2424
"src": "node_modules/@fortawesome/fontawesome-free/webfonts/fa-brands-400.ttf"
2525
},
26-
"node_modules/@fortawesome/fontawesome-free/webfonts/fa-solid-900.ttf": {
27-
"file": "assets/fa-solid-900-67a880b4.ttf",
28-
"src": "node_modules/@fortawesome/fontawesome-free/webfonts/fa-solid-900.ttf"
29-
},
3026
"node_modules/@fortawesome/fontawesome-free/webfonts/fa-v4compatibility.ttf": {
3127
"file": "assets/fa-v4compatibility-8d9500e8.ttf",
3228
"src": "node_modules/@fortawesome/fontawesome-free/webfonts/fa-v4compatibility.ttf"
3329
},
30+
"node_modules/@fortawesome/fontawesome-free/webfonts/fa-solid-900.ttf": {
31+
"file": "assets/fa-solid-900-67a880b4.ttf",
32+
"src": "node_modules/@fortawesome/fontawesome-free/webfonts/fa-solid-900.ttf"
33+
},
3434
"resources/css/app-frontend.css": {
3535
"file": "assets/app-frontend-da3b9b9b.css",
3636
"src": "resources/css/app-frontend.css",
@@ -47,7 +47,7 @@
4747
"isEntry": true
4848
},
4949
"resources/js/app-backend.js": {
50-
"file": "assets/app-backend-bb311ed2.js",
50+
"file": "assets/app-backend-7d963dee.js",
5151
"src": "resources/js/app-backend.js",
5252
"isEntry": true
5353
}

resources/js/app-backend.js

+4-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
// import "/node_modules/jquery/dist/jquery.min.js";
1+
// Import all of CoreUI's CSS
2+
import * as coreui from '@coreui/coreui'
23

3-
// import $ from 'jquery'
4-
// window.jQuery = window.$ = $
5-
6-
import "/node_modules/@coreui/coreui/dist/js/coreui.bundle.js";
4+
// import "/node_modules/@coreui/coreui/dist/js/coreui.bundle.js";
75
import "/node_modules/simplebar/dist/simplebar.min.js";
86
import "/resources/js/laravel.js";
9-
import "/resources/js/backend-custom.js";
7+
// import "/resources/js/backend-custom.js";

resources/views/backend/index.blade.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
{{ date_today() }}
1818
</x-slot>
1919
<x-slot name="toolbar">
20-
<button class="btn btn-outline-primary mb-1" type="button">
20+
<button class="btn btn-outline-primary mb-1" type="button" data-toggle="tooltip" data-coreui-placement="top" title="Tooltip">
2121
<i class="fa-solid fa-bullhorn"></i>
2222
</button>
2323
</x-slot>
@@ -26,7 +26,7 @@
2626
<hr>
2727

2828
<!-- Dashboard Content Area -->
29-
29+
3030
<!-- / Dashboard Content Area -->
3131

3232
</div>

vite.config.js

+13-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
import { defineConfig } from 'vite';
22
import laravel from 'laravel-vite-plugin';
3+
// const path = require('path')
4+
import path from 'path'
5+
6+
37
// import react from '@vitejs/plugin-react';
48
// import vue from '@vitejs/plugin-vue';
59

@@ -33,5 +37,13 @@ export default defineConfig({
3337
// },
3438
// },
3539
// }),
36-
]
40+
],
41+
resolve: {
42+
alias: {
43+
'~coreui': path.resolve(__dirname, 'node_modules/@coreui/coreui'),
44+
// for CoreUI PRO users
45+
// '~coreui': path.resolve(__dirname, 'node_modules/@coreui/coreui-pro'),
46+
}
47+
},
48+
3749
});

yarn.lock

+4,647-52
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)