Total Complexity | 1 |
Complexity/F | 1 |
Lines of Code | 12 |
Function Count | 1 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 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 | })))) |