vite.themes.config.ts 767 B

12345678910111213141516171819202122232425262728
  1. import { defineConfig } from 'vite';
  2. // https://vitejs.dev/config/
  3. export default defineConfig({
  4. build: {
  5. outDir: 'dist/themes',
  6. manifest: true,
  7. rollupOptions: {
  8. input: [
  9. '/src/styles/antarctic.scss',
  10. '/src/styles/blackboard.scss',
  11. '/src/styles/christmas.scss',
  12. '/src/styles/default.scss',
  13. '/src/styles/fire-red.scss',
  14. '/src/styles/future.scss',
  15. '/src/styles/halloween.scss',
  16. '/src/styles/hufflepuff.scss',
  17. '/src/styles/island.scss',
  18. '/src/styles/jade-green.scss',
  19. '/src/styles/kibela.scss',
  20. '/src/styles/mono-blue.scss',
  21. '/src/styles/nature.scss',
  22. '/src/styles/spring.scss',
  23. '/src/styles/wood.scss',
  24. ],
  25. },
  26. },
  27. });