Files
nexusphp/webpack.mix.js

18 lines
583 B
JavaScript
Raw Normal View History

2021-04-02 19:48:41 +08:00
const mix = require('laravel-mix');
/*
|--------------------------------------------------------------------------
| Mix Asset Management
|--------------------------------------------------------------------------
|
| Mix provides a clean, fluent API for defining some Webpack build steps
| for your Laravel applications. By default, we are compiling the CSS
| file for the application as well as bundling up all the JS files.
|
*/
mix.js('resources/js/app.js', 'public/js')
2022-10-27 20:21:54 +08:00
.postCss('resources/css/app.css', 'public/styles', [
require('tailwindcss'),
2021-04-02 19:48:41 +08:00
]);