Files
AstralRinth/theseus_gui/svelte.config.js
2022-08-01 22:45:24 +02:00

21 lines
471 B
JavaScript

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