1.0.2 • Published 2 years ago

laravel-mix-hash-length v1.0.2

Weekly downloads
2
License
MIT
Repository
github
Last release
2 years ago

Laravel Mix Hash Length

Software License Latest Version on NPM

Laravel Mix extension for globally adjusting hash length.

  • Before: main.js?c37511d80442057e, font.woff?1c0ecbb4c37511d8
  • After: main.js?c375, font.woff?1c0e

Installation

npm install laravel-mix-hash-length

Usage

Require the extension inside your webpack.mix.js and call hashLength() with the desired hash length as only argument.

const mix = require('laravel-mix')
require('laravel-mix-hash-length')

mix.hashLength(4)  // main.js?c375
mix.hashLength(6)  // main.js?c3751c
mix.hashLength(10) // main.js?c37511d804

Options

The extension takes a single argument: the desired hash length.

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

4 years ago