mirror of
https://github.com/tenrok/vue-context.git
synced 2026-05-17 05:49:36 +03:00
8 lines
188 B
JavaScript
8 lines
188 B
JavaScript
const mix = require('laravel-mix');
|
|
|
|
mix
|
|
.setPublicPath('test/js/dist')
|
|
.js('test/js/src/index.js', 'index.js')
|
|
.sass('test/js/src/index.scss', 'index.css')
|
|
.sourceMaps();
|