mirror of https://github.com/sveltejs/svelte
9 lines
133 B
9 lines
133 B
6 years ago
|
export default {
|
||
|
preprocess: {
|
||
|
style: ({ content }) => {
|
||
|
return {
|
||
|
code: content.replace('$brand', 'purple')
|
||
|
};
|
||
|
}
|
||
|
}
|
||
|
};
|