27 lines
539 B
JavaScript
27 lines
539 B
JavaScript
|
|
import alpine from '@astrojs/alpine';
|
||
|
|
import tailwind from '@astrojs/tailwind';
|
||
|
|
import { defineConfig } from 'astro/config';
|
||
|
|
|
||
|
|
// Heady Remote Access - Astro Configuration
|
||
|
|
// Awesome web client for multi-protocol remote access
|
||
|
|
export default defineConfig({
|
||
|
|
integrations: [alpine(), tailwind()],
|
||
|
|
output: 'static',
|
||
|
|
build: {
|
||
|
|
assets: 'assets',
|
||
|
|
},
|
||
|
|
vite: {
|
||
|
|
define: {
|
||
|
|
global: 'globalThis',
|
||
|
|
},
|
||
|
|
optimizeDeps: {
|
||
|
|
include: [
|
||
|
|
'guacamole-client',
|
||
|
|
'xterm',
|
||
|
|
'xterm-addon-fit',
|
||
|
|
'xterm-addon-web-links',
|
||
|
|
],
|
||
|
|
},
|
||
|
|
},
|
||
|
|
});
|