14 lines
276 B
JavaScript
14 lines
276 B
JavaScript
// @ts-check
|
|
import { defineConfig } from 'astro/config';
|
|
import tailwind from '@astrojs/tailwind';
|
|
|
|
export default defineConfig({
|
|
devToolbar: {
|
|
enabled: false
|
|
},
|
|
integrations: [tailwind()],
|
|
server: {
|
|
host: true,
|
|
allowedHosts: ['games.teletype.hu']
|
|
}
|
|
}); |