Last active
July 20, 2021 22:19
-
-
Save wiratama/79ad710392268a854b1288403705022a to your computer and use it in GitHub Desktop.
Laravel mix API cheat sheet
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
/*** Laravel mix API cheat sheet **/ | |
mix.js(src, output); | |
mix.react(src, output); /** Identical to mix.js(), but registers React Babel compilation. **/ | |
mix.extract(vendorLibs); | |
mix.sass(src, output); | |
mix.standaloneSass('src', output); /** Faster, but isolated from Webpack. **/ | |
mix.fastSass('src', output); /** Alias for mix.standaloneSass(). **/ | |
mix.less(src, output); | |
mix.stylus(src, output); | |
mix.postCss(src, output, [require('postcss-some-plugin')()]); | |
mix.browserSync('my-site.dev'); | |
mix.combine(files, destination); | |
mix.babel(files, destination); /** Identical to mix.combine(), but also includes Babel compilation. **/ | |
mix.copy(from, to); | |
mix.copyDirectory(fromDir, toDir); | |
mix.minify(file); | |
mix.sourceMaps(); /** Enable sourcemaps **/ | |
mix.version(); /** Enable versioning. **/ | |
mix.disableNotifications(); | |
mix.setPublicPath('path/to/public'); | |
mix.setResourceRoot('prefix/for/resource/locators'); | |
mix.autoload({}); <-- Will be passed to Webpack's ProvidePlugin. | |
mix.webpackConfig({}); <-- Override webpack.config.js, without editing the file directly. | |
mix.then(function () {}) <-- Will be triggered each time Webpack finishes building. | |
mix.options({ | |
extractVueStyles: false, /** Extract .vue component styling to file, rather than inline. **/ | |
processCssUrls: true, /** Process/optimize relative stylesheet url()'s. Set to false, if you don't want them touched. **/ | |
purifyCss: false, /** Remove unused CSS selectors. **/ | |
uglify: {}, /** Uglify-specific options. https://webpack.github.io/docs/list-of-plugins.html#uglifyjsplugin **/ | |
postCss: [] /** Post-CSS options: https://github.com/postcss/postcss/blob/master/docs/plugins.md **/ | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment