CI / changes (push) Successful in 10s
CI / commitlint (push) Has been skipped
CI / openapi (push) Successful in 27s
CI / web (push) Successful in 38s
CI / go (push) Successful in 2m36s
CI / bird2 (push) Successful in 15s
CI / release (push) Failing after 3m7s
Refactored the project structure to support a monorepo setup, moving the web application to `apps/web/` and updating related configurations. Adjusted pre-commit hooks to use `pnpm` for linting and formatting. Updated CI workflows to reflect the new directory structure and dependencies. Removed legacy files and configurations from the previous `web/` directory, streamlining the project for better maintainability and clarity.
30 lines
871 B
JavaScript
30 lines
871 B
JavaScript
import adapter from '@sveltejs/adapter-static';
|
|
import { relative, sep } from 'node:path';
|
|
import path from 'node:path';
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
const config = {
|
|
compilerOptions: {
|
|
// defaults to rune mode for the project, except for `node_modules`. Can be removed in svelte 6.
|
|
runes: ({ filename }) => {
|
|
const relativePath = relative(import.meta.dirname, filename);
|
|
const pathSegments = relativePath.toLowerCase().split(sep);
|
|
const isExternalLibrary = pathSegments.includes('node_modules');
|
|
|
|
return isExternalLibrary ? undefined : true;
|
|
}
|
|
},
|
|
kit: {
|
|
adapter: adapter({
|
|
fallback: 'index.html',
|
|
strict: false
|
|
}),
|
|
alias: {
|
|
'@evobgp/ui': path.resolve(import.meta.dirname, '../../packages/ui/src'),
|
|
'@evobgp/shared': path.resolve(import.meta.dirname, '../../packages/shared/src')
|
|
}
|
|
}
|
|
};
|
|
|
|
export default config;
|