1
0

Update to the newest version of Omorphia

This commit is contained in:
Wuzado
2022-08-01 22:45:24 +02:00
parent 855604c9e0
commit eeb2dc7fd8
20 changed files with 9420 additions and 399 deletions

View File

@@ -1,13 +1,19 @@
import adapter from '@sveltejs/adapter-static';
import { preprocess } from 'omorphia/config/svelte.config'
import { preprocess } from 'omorphia/config/svelte';
import path from 'path';
/** @type {import('@sveltejs/kit').Config} */
const config = {
preprocess,
preprocess: [ preprocess ],
kit: {
adapter: adapter({
fallback: '200.html',
})
}),
alias: {
$generated: path.resolve('./generated'),
$stores: path.resolve('./src/stores'),
}
}
};