22bc7460df
* Unify submission execution implementations into submissionRunner * Unify contestMonitorTypes definitions between extension & web * Make line separator in entry use LF * Add entry.sh for sandbox * Fix web imports * Sandbox read from .env --------- Co-authored-by: orosmatthew <orosmatthew@pm.me>
20 lines
366 B
JavaScript
20 lines
366 B
JavaScript
import adapter from '@sveltejs/adapter-node';
|
|
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
const config = {
|
|
preprocess: vitePreprocess(),
|
|
|
|
kit: {
|
|
adapter: adapter(),
|
|
alias: {
|
|
'@extensionWeb/*': '../shared/extensionWeb/*'
|
|
}
|
|
},
|
|
vitePlugin: {
|
|
inspector: true
|
|
}
|
|
};
|
|
|
|
export default config;
|