__recipes__/next_9/next.config.js   A
last analyzed

Complexity

Total Complexity 1
Complexity/F 1

Size

Lines of Code 12
Function Count 1

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 9
dl 0
loc 12
rs 10
c 0
b 0
f 0
wmc 1
mnd 0
bc 0
fnc 1
bpm 0
cpm 1
noi 0
1
const withCss = require('@zeit/next-css')
2
, withSass = require('@zeit/next-sass')
3
, withLess = require('@zeit/next-less')
4
, withStylus = require('@zeit/next-stylus')
5
6
module.exports = withStylus(withLess(withSass(withCss({
7
  cssModules: true,
8
  webpack: (config) => {
9
    config.resolve.symlinks = false
10
    return config
11
  }
12
}))))