diff --git a/.gitignore b/.gitignore index 6495aef..efdaae6 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ node_modules -vendor \ No newline at end of file +vendor +!src/public/fonts/vendor \ No newline at end of file diff --git a/src/public/fonts/vendor/bootstrap-icons/bootstrap-icons.woff b/src/public/fonts/vendor/bootstrap-icons/bootstrap-icons.woff new file mode 100644 index 0000000..51204d2 Binary files /dev/null and b/src/public/fonts/vendor/bootstrap-icons/bootstrap-icons.woff differ diff --git a/src/public/fonts/vendor/bootstrap-icons/bootstrap-icons.woff2 b/src/public/fonts/vendor/bootstrap-icons/bootstrap-icons.woff2 new file mode 100644 index 0000000..92c4830 Binary files /dev/null and b/src/public/fonts/vendor/bootstrap-icons/bootstrap-icons.woff2 differ diff --git a/src/public/mix-manifest.json b/src/public/mix-manifest.json index 6b47b34..5c0f8de 100644 --- a/src/public/mix-manifest.json +++ b/src/public/mix-manifest.json @@ -1,4 +1,6 @@ { "/js/app.js": "/js/app.js", - "/js/chart.umd.js": "/js/chart.umd.js" + "/js/chart.umd.js": "/js/chart.umd.js", + "/fonts/vendor/bootstrap-icons/bootstrap-icons.woff": "/fonts/vendor/bootstrap-icons/bootstrap-icons.woff", + "/fonts/vendor/bootstrap-icons/bootstrap-icons.woff2": "/fonts/vendor/bootstrap-icons/bootstrap-icons.woff2" } diff --git a/src/webpack.mix.js b/src/webpack.mix.js index aab7f92..82449f2 100644 --- a/src/webpack.mix.js +++ b/src/webpack.mix.js @@ -14,4 +14,5 @@ const mix = require('laravel-mix'); mix.setPublicPath(`src/public`); mix.js('src/js/app.js', 'js') .js('node_modules/chart.js/dist/chart.umd.js', 'js') + .copy('node_modules/bootstrap-icons/font/fonts', 'src/public/fonts/vendor/bootstrap-icons') .sourceMaps();