mirror of
https://github.com/gromlab-ru/svg-sprites.git
synced 2026-07-22 20:50:19 +03:00
14 lines
359 B
JavaScript
14 lines
359 B
JavaScript
|
|
const sourceOrigin = process.env.SVG_SPRITE_SOURCE_ORIGIN
|
||
|
|
|
||
|
|
if (!sourceOrigin) throw new Error('SVG_SPRITE_SOURCE_ORIGIN is required.')
|
||
|
|
|
||
|
|
export default {
|
||
|
|
mode: 'standalone@server',
|
||
|
|
name: 'remote-app',
|
||
|
|
input: [
|
||
|
|
'../../../../fixtures/icons/duotone.svg',
|
||
|
|
{ name: 'check', url: `${sourceOrigin}/sources/check.svg` },
|
||
|
|
],
|
||
|
|
generatedNotice: false,
|
||
|
|
}
|