Skip to content

Instantly share code, notes, and snippets.

@bastndev
Last active March 20, 2024 23:23
Show Gist options
  • Save bastndev/5dc73e05140745fee90160025ada94a6 to your computer and use it in GitHub Desktop.
Save bastndev/5dc73e05140745fee90160025ada94a6 to your computer and use it in GitHub Desktop.
tsconfig.json
{
"extends": "astro/tsconfigs/strict",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@layouts/*":["src/layouts/*"],
"@components/*":["src/components/*"],
}
}
}
@bastndev
Copy link
Author

import { defineConfig } from 'astro/config';

// https://astro.build/config
export default defineConfig({
  output:"server"
});

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment