Created
June 4, 2019 16:31
-
-
Save dsazup/56c8f97f9728652b2d822a411c7aa40c to your computer and use it in GitHub Desktop.
Css modules laravel mix
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
module.exports = class CssModules { | |
/** | |
* The optional name to be used when called by Mix. | |
* Defaults to the class name, lowercased. | |
* | |
* Ex: mix.example(); | |
* | |
* @return {String|Array} | |
*/ | |
name() { | |
// Example: | |
// return 'example'; | |
return ['cssModules'] | |
} | |
/** | |
* Override the generated webpack configuration. | |
* | |
* @param {Object} webpackConfig | |
* @return {void} | |
*/ | |
webpackConfig(config) { | |
this.addCssRule(config) | |
this.addScssRule(config) | |
} | |
addCssRule(config) { | |
let cssRule = config.module.rules.find( | |
rule => rule.test.toString() === '/\\.css$/' | |
) | |
let loaders = cssRule.loaders | |
delete cssRule.loaders | |
cssRule.oneOf = [ | |
{ | |
resourceQuery: /module/, | |
use: [ | |
'vue-style-loader', | |
{ | |
loader: 'css-loader', | |
options: { | |
modules: true, | |
localIdentName: '[local]_[hash:base64:5]', | |
}, | |
}, | |
'sass-loader', | |
], | |
}, | |
{ | |
use: loaders, | |
}, | |
] | |
} | |
addScssRule(config) { | |
let cssRule = config.module.rules.find( | |
rule => { | |
return rule.test.toString() === '/\\.scss$/' } | |
) | |
let loaders = cssRule.loaders | |
delete cssRule.loaders | |
cssRule.oneOf = [ | |
{ | |
resourceQuery: /module/, | |
use: [ | |
'vue-style-loader', | |
{ | |
loader: 'css-loader', | |
options: { | |
modules: true, | |
localIdentName: '[local]_[hash:base64:5]', | |
}, | |
}, | |
'sass-loader', | |
], | |
}, | |
{ | |
use: loaders, | |
}, | |
] | |
} | |
} |
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
const mix = require('laravel-mix') | |
.... other code ... | |
let CssModules = require('./CssModules') | |
mix.extend('cssModules', new CssModules) | |
mix.js('resources/js/app.js', 'public/js') | |
.cssModules() | |
.postCss('resources/css/app.css', 'public/css', [ | |
cssImport(), | |
cssNesting(), | |
tailwindcss(), | |
]) | |
... other code .. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment