2024-10-14 18:51:44 +08:00
|
|
|
const CracoAlias = require('craco-alias');
|
|
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
|
plugins: [
|
|
|
|
|
{
|
|
|
|
|
plugin: CracoAlias,
|
|
|
|
|
options: {
|
|
|
|
|
baseUrl: 'src',
|
|
|
|
|
source: 'tsconfig',
|
|
|
|
|
tsConfigPath: './tsconfig.json',
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
devServer: {
|
2024-12-24 14:25:06 +08:00
|
|
|
proxy: [
|
|
|
|
|
// {
|
|
|
|
|
// context: ['/api'],
|
|
|
|
|
// target: 'https://my.test-api.com',
|
|
|
|
|
// },
|
|
|
|
|
],
|
2024-10-14 18:51:44 +08:00
|
|
|
},
|
|
|
|
|
};
|