9 lines
221 B
JavaScript
9 lines
221 B
JavaScript
|
|
// next.config.js
|
||
|
|
const withLess = require('@zeit/next-less')
|
||
|
|
const withCSS = require('@zeit/next-css');
|
||
|
|
module.exports = withLess({
|
||
|
|
/* config options here */
|
||
|
|
})
|
||
|
|
module.exports = withCSS({
|
||
|
|
/* config options here */
|
||
|
|
})
|