UNPKG

laravel-mix

Version:

The power of webpack, distilled for the rest of us.

12 lines (10 loc) 311 B
const path = require('path'); const { Component } = require('./Component'); module.exports = class SetPublicPath extends Component { /** * @param {string} defaultPath */ register(defaultPath) { this.context.config.publicPath = path.normalize(defaultPath.replace(/\/$/, '')); } };