angrybeanie-front-end/next.config.js
2020-12-06 21:49:37 +11:00

9 lines
No EOL
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 */
})