Piano notes book, powered by Astro and React.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

26 regels
539 B

  1. import { defineConfig } from 'astro/config';
  2. import tailwind from '@astrojs/tailwind';
  3. import mdx from '@astrojs/mdx';
  4. import autoImport from 'astro-auto-import';
  5. import react from '@astrojs/react';
  6. // https://astro.build/config
  7. export default defineConfig({
  8. trailingSlash: 'never',
  9. output: 'static',
  10. build: {
  11. format: 'file'
  12. },
  13. compressHTML: false,
  14. integrations: [
  15. tailwind({
  16. applyBaseStyles: false
  17. }),
  18. autoImport({
  19. imports: ['./src/components/Score.astro']
  20. }),
  21. mdx(),
  22. react()
  23. ],
  24. });