chartmaker-fe/svelte.config.js

16 lines
427 B
JavaScript
Raw Permalink Normal View History

2022-03-04 11:41:53 +01:00
const sveltePreprocess = require('svelte-preprocess');
2022-03-04 14:00:38 +01:00
const makeAttractionsImporter = require('attractions/importer.js');
const path = require('path');
2022-03-04 11:41:53 +01:00
module.exports = {
2022-03-04 14:00:38 +01:00
preprocess: [
sveltePreprocess({
scss: {
importer: makeAttractionsImporter({
themeFile: path.join(__dirname, 'src/css/theme.scss')
}),
includePaths: [path.join(__dirname, './src/css')],
}
})
],
2022-03-04 11:41:53 +01:00
};