Skip to content

Instantly share code, notes, and snippets.

@kennethnwc
Created June 12, 2020 03:45
Show Gist options
  • Save kennethnwc/56597309d59ea9f64882fa4ef26537f1 to your computer and use it in GitHub Desktop.
Save kennethnwc/56597309d59ea9f64882fa4ef26537f1 to your computer and use it in GitHub Desktop.
next config
const withSass = require('@zeit/next-sass')
module.exports = withSass({
cssModules: true,
cssLoaderOptions: {
camelCase: 'dashes',
importLoaders: 1,
localIdentName: "[local]___[hash:base64:5]",
},
sassLoaderOptions: {
includePaths: ["node_modules", "./node_modules"],
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment