mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-21 15:42:31 -05:00
Move fonts to resources/assets/fonts, mark everything in public/fonts in the gitignore, and add a copy task for resources/assets/fonts/* to public/fonts
This commit is contained in:
parent
f42f5e5a16
commit
9a7f8857c3
6 changed files with 2 additions and 3 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -4,9 +4,7 @@
|
|||
/public/build
|
||||
/public/css
|
||||
/public/js
|
||||
/public/fonts/FontAwesome.otf
|
||||
/public/fonts/fontawesome-webfont.*
|
||||
/public/fonts/glyphicons-halflings-regular.*
|
||||
/public/fonts
|
||||
/public/uploads
|
||||
/storage/exports
|
||||
.env
|
||||
|
|
|
@ -45,6 +45,7 @@ elixir(function(mix) {
|
|||
mix
|
||||
.copy('bower_components/bootstrap/dist/fonts/**', 'public/fonts')
|
||||
.copy('bower_components/font-awesome/fonts/**', 'public/fonts')
|
||||
.copy('resources/assets/fonts/**', 'public/fonts')
|
||||
.less('dashboard.less', 'public/css/dashboard.css', { paths: lessPaths, plugins: [lessglob] })
|
||||
.less('app.less', 'public/css/app.css', { paths: lessPaths, plugins: [lessglob] })
|
||||
.scripts(jsLocal, 'public/js/app.js', 'resources/assets/js/')
|
||||
|
|
Before Width: | Height: | Size: 248 KiB After Width: | Height: | Size: 248 KiB |
Loading…
Reference in a new issue