Skip to content

Commit

Permalink
chore(dev): Revert to original Mix public path
Browse files Browse the repository at this point in the history
  • Loading branch information
geoffreyvanwyk committed Dec 16, 2023
1 parent d599fda commit 4543219
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions files/website/webpack.mix.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@

let mix = require('laravel-mix');

mix.js('resources/assets/app.js', 'app.js')
mix
.js('resources/assets/app.js', 'app.js')
.postCss('resources/assets/app.css', 'app.css', [
require('tailwindcss'),
require('autoprefixer'),
]).setPublicPath('_media')
.copy('_media/**/*', '_site');
])
.setPublicPath('_site/media')
.copyDirectory('_site/media', '_media');

0 comments on commit 4543219

Please sign in to comment.