chartmaker-fe/svelte.config.js

16 lines
427 B
JavaScript

const sveltePreprocess = require('svelte-preprocess');
const makeAttractionsImporter = require('attractions/importer.js');
const path = require('path');
module.exports = {
preprocess: [
sveltePreprocess({
scss: {
importer: makeAttractionsImporter({
themeFile: path.join(__dirname, 'src/css/theme.scss')
}),
includePaths: [path.join(__dirname, './src/css')],
}
})
],
};