mirror of
https://github.com/tenrok/OverlayScrollbars.git
synced 2026-06-16 20:00:36 +03:00
18 lines
399 B
JavaScript
18 lines
399 B
JavaScript
import preprocess from 'svelte-preprocess';
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
const config = {
|
|
// Consult https://github.com/sveltejs/svelte-preprocess
|
|
// for more information about preprocessors
|
|
preprocess: preprocess({ sourceMap: true }),
|
|
compilerOptions: {
|
|
enableSourcemap: true,
|
|
},
|
|
package: {
|
|
source: './src/',
|
|
dir: './dist',
|
|
},
|
|
};
|
|
|
|
export default config;
|