Formatting/Linting

This commit is contained in:
2021-08-16 18:27:09 +02:00
parent c4e1b5e445
commit 08520ac616
12 changed files with 422 additions and 415 deletions

View File

@@ -1,20 +1,22 @@
import preprocess from "svelte-preprocess";
import staticAdapter from '@sveltejs/adapter-static';
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
// hydrate the <div id="svelte"> element in src/app.html
target: '#svelte',
adapter: staticAdapter(),
files: {
assets: 'static'
}
},
preprocess: [preprocess({
"postcss": true
})]
};
export default config;
import preprocess from 'svelte-preprocess';
import staticAdapter from '@sveltejs/adapter-static';
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
// hydrate the <div id="svelte"> element in src/app.html
target: '#svelte',
adapter: staticAdapter(),
files: {
assets: 'static'
}
},
preprocess: [
preprocess({
postcss: true
})
]
};
export default config;