first commit
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
// @ts-check
|
||||
import { defineConfig } from 'astro/config';
|
||||
|
||||
import tailwindcss from '@tailwindcss/vite';
|
||||
|
||||
import node from '@astrojs/node';
|
||||
|
||||
// https://astro.build/config
|
||||
export default defineConfig({
|
||||
vite: {
|
||||
plugins: [tailwindcss()],
|
||||
server: {
|
||||
// Lets us test host-based behavior (hhonig.de vs. place4bees.com) locally
|
||||
// by sending a custom Host header against the dev server.
|
||||
allowedHosts: ['hhonig.de', 'place4bees.com']
|
||||
}
|
||||
},
|
||||
|
||||
adapter: node({
|
||||
mode: 'standalone'
|
||||
})
|
||||
});
|
||||
Reference in New Issue
Block a user