mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 19:41:57 +08:00
13 lines
366 B
JavaScript
13 lines
366 B
JavaScript
// .fes.js 只负责管理编译时配置,只能使用plain Object
|
||
import path from 'path';
|
||
|
||
export default {
|
||
// publicPath: 'https://gw.alipayobjects.com/',
|
||
// 配置 mini-css-extract-plugin
|
||
extraCSS: {
|
||
loader: {
|
||
publicPath: (resourcePath, context) => `${path.relative(path.dirname(resourcePath), context)}/`,
|
||
},
|
||
},
|
||
};
|