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
The configuration described here gives now an error:
https://github.com/accurat/accurapp#customizing-webpack
const { buildWebpackConfig } = require('webpack-preset-accurapp') const { sass } = require('webpack-blocks') module.exports = buildWebpackConfig([ sass(), ])
The text was updated successfully, but these errors were encountered:
const { sass } = require('webpack-blocks')
becomes
const { sass } = require('@webpack-blocks/sass')
can you make a PR?
Sorry, something went wrong.
const { buildWebpackConfig } = require('webpack-preset-accurapp') const { match } = require('@webpack-blocks/webpack') const { css } = require('@webpack-blocks/assets') const sass = require('@webpack-blocks/sass') module.exports = buildWebpackConfig([ match(['*.scss'], [css(cssOptions), postcss(postcssOptions), sass()]), ])
@ivanross I'll assign you to it.
@ivanross yes, also the cssOptions and postcssOptions should be made exportable like this
const { buildWebpackConfig, cssOptions, postcssOptions } = require('webpack-preset-accurapp')
ivanross
Successfully merging a pull request may close this issue.
The configuration described here gives now an error:
https://github.com/accurat/accurapp#customizing-webpack
The text was updated successfully, but these errors were encountered: