We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have two files
styles1.less
@value lh: 1.5rem
styles2.less
@value lh from './styles1.less' .heading { font-size: lh }
The above setup doesnt work. Webpack doesnt evaluate anything. It comes as it is to the browser.
But if I use this
@value lh: 1.5rem .heading { font-size: lh }
The above works.
The text was updated successfully, but these errors were encountered:
What's your importLoaders value from webpack config?
importLoaders
Sorry, something went wrong.
Experiencing the same actually... Thats my webpack part:
{ loader: 'css-loader', options: { localIndentName, sourceMap: true, modules: true, importLoaders: 1 } }, { loader: 'postcss-loader', options: { plugins: [ postcssImport({ path: path.resolve(PATHS.app, './css') }), postcssCssnext({ browsers: ['> 1%', 'last 2 versions'] }), postcssReporter({ clearMessages: true }) ] } }
Using https://github.com/reactGo/reactGo as a boilerplate
@rpunkfu Its 1
No branches or pull requests
I have two files
styles1.less
styles2.less
The above setup doesnt work. Webpack doesnt evaluate anything. It comes as it is to the browser.
But if I use this
The above works.
The text was updated successfully, but these errors were encountered: