booplaysgba/svelte.config.js
Laureηt ba419485c8
feat: converted admin.html to Admin.svelte
file is broken, need refactor
2021-12-13 18:34:20 +01:00

19 lines
436 B
JavaScript

import adapter from '@sveltejs/adapter-auto';
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(),
kit: {
adapter: adapter(),
// hydrate the <div id="svelte"> element in src/app.html
target: '#svelte'
}
};
export default config;