casdoor/web/craco.config.js

26 lines
508 B
JavaScript
Raw Normal View History

2021-03-26 23:18:24 +08:00
const CracoLessPlugin = require('craco-less');
module.exports = {
devServer: {
proxy: {
'/api': {
target: 'http://localhost:8000',
changeOrigin: true,
}
},
},
2021-03-26 23:18:24 +08:00
plugins: [
{
plugin: CracoLessPlugin,
options: {
lessLoaderOptions: {
lessOptions: {
modifyVars: { '@primary-color': 'rgb(45,120,213)' },
javascriptEnabled: true,
},
},
},
},
],
};