init front
This commit is contained in:
20
front/astro.config.mjs
Normal file
20
front/astro.config.mjs
Normal file
@ -0,0 +1,20 @@
|
||||
import { defineConfig } from 'astro/config';
|
||||
|
||||
// https://astro.build/config
|
||||
export default defineConfig({
|
||||
// integrations: [tailwind(), test, routing(), version(), buildInfos()],
|
||||
compressHTML: true,
|
||||
build: {
|
||||
assets: 'assets',
|
||||
inlineStylesheets: 'auto'
|
||||
},
|
||||
server: {
|
||||
host: true,
|
||||
port: 3000
|
||||
},
|
||||
trailingSlash: 'never',
|
||||
output: 'static', //'server',
|
||||
// adapter: node({
|
||||
// mode: 'standalone'
|
||||
// }),
|
||||
});
|
Reference in New Issue
Block a user