new graphql pipeline

This commit is contained in:
2021-12-22 23:25:13 +01:00
parent deb89701f7
commit 44224ffb85
28 changed files with 13826 additions and 2020 deletions

View File

@@ -1,5 +1,6 @@
import preprocess from 'svelte-preprocess'
import adapter from '@sveltejs/adapter-static'
import analyze from 'rollup-plugin-analyzer'
/** @type {import('@sveltejs/kit').Config} */
const config = {
@@ -7,6 +8,14 @@ const config = {
kit: {
adapter: adapter(),
target: '#svelte',
vite: {
build: {
rollupOptions: {
plugins: [analyze()],
},
},
},
},
}