mirror of
https://github.com/hcengineering/platform.git
synced 2026-08-17 18:05:42 +02:00
10 lines
284 B
JavaScript
10 lines
284 B
JavaScript
const sveltePreprocess = require('svelte-preprocess')
|
|
|
|
module.exports = {
|
|
preprocess: sveltePreprocess({
|
|
scss: {
|
|
// This is expected as svelte-preprocess hasn't fully migrated to the modern API yet
|
|
silenceDeprecations: ['legacy-js-api']
|
|
}
|
|
})
|
|
}; |