mirror of
https://github.com/getmarkus/astro-tailwind-mambaui-template.git
synced 2025-04-20 03:41:54 +02:00
13 lines
No EOL
315 B
JavaScript
13 lines
No EOL
315 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
import tailwind from "@astrojs/tailwind";
|
|
|
|
import alpinejs from "@astrojs/alpinejs";
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
integrations: [tailwind(), alpinejs()],
|
|
base: '/astro-tailwind-mambaui-template',
|
|
build: {
|
|
assets: 'astro'
|
|
}
|
|
}); |