js-to-styles-var-loader
js-to-styles-var-loader copied to clipboard
Webpack loader for sharing data amongst (less || sass) && javascript modules
I'm using Semantic UI Less, and because some of the files processed by less do not contain .less as the extension, the plugin doesn't work for me as expected. I...
`const getThemeConfig = (extractLess, themeNameToPassInToLess) => { return { test: /\.(css|less)$/, use: extractLess.extract({ use: [ { loader: "css-loader", options: { importLoaders: 1 } }, 'postcss-loader', { loader: "less-loader", options: {...
Hey I'm trying to use your loader in a project that is using `babel-loader` on the js. However, it seems that the way javascript is required through this module doesn't...