metaplex/js/packages/web/next.config.js

22 lines
389 B
JavaScript
Raw Normal View History

2021-07-07 02:56:46 -07:00
const withLess = require('next-with-less');
module.exports = withLess({
async rewrites() {
return [
{
source: '/:any*',
destination: '/',
},
];
},
lessLoaderOptions: {
lessOptions: {
modifyVars: {
'@primary-color': '#768BF9',
'@text-color': 'rgba(255, 255, 255)',
},
javascriptEnabled: true,
},
},
});