angrybeanie-front-end/next.config.js

9 lines
221 B
JavaScript
Raw Normal View History

2020-12-06 21:49:37 +11:00
// 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 */
})