forked from OpenServer/OpenAuth_views
8e4c292959
- Switching build system to pure rollup without too much custom logic - Restructuring files - Adding Popup View - Make everything typescript compatible - Adding @hibas123/theme - Start switching to @hibas123/theme
11 lines
194 B
JavaScript
11 lines
194 B
JavaScript
const sveltePreprocess = require("svelte-preprocess");
|
|
|
|
module.exports = {
|
|
emitCss: true,
|
|
preprocess: sveltePreprocess({
|
|
scss: {
|
|
includePaths: ["theme"],
|
|
},
|
|
}),
|
|
};
|