mirror of
https://github.com/lichess-org/lila.git
synced 2026-05-26 13:51:00 +00:00
27 lines
441 B
JavaScript
27 lines
441 B
JavaScript
export default {
|
|
multipass: false,
|
|
js2svg: {
|
|
pretty: false,
|
|
},
|
|
plugins: [
|
|
{
|
|
name: 'preset-default',
|
|
params: {
|
|
overrides: {
|
|
convertPathData: false,
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: 'convertPathData',
|
|
params: {
|
|
floatPrecision: 4,
|
|
straightCurves: false,
|
|
smartArcRounding: false,
|
|
forceAbsolutePath: false,
|
|
},
|
|
},
|
|
'removeTitle',
|
|
],
|
|
};
|