This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
const path = require('path'); | |
const del = require('del'); | |
const {mix} = require('laravel-mix'); | |
const env = require('prop-env'); | |
const basePath = (...fp) => path.join(__dirname, ...fp || ''); | |
const assetPath = (...fp) => basePath('resources/assets', ...fp); | |
const publicPath = (...fp) => basePath('public', ...fp); |