-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathastro.config.ts
56 lines (51 loc) · 1.17 KB
/
astro.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import { resolve } from 'node:path';
import partytown from '@astrojs/partytown';
import sitemap from '@astrojs/sitemap';
import { defineConfig } from 'astro/config';
import { loadEnv } from 'vite';
import { inline } from './script/module/inline/inline';
const environment = loadEnv(process.env.NODE_ENV ?? 'development', './src/global/env', '');
const dirname = resolve();
export default defineConfig({
build:
{
assetsPrefix: process.env.NODE_ENV === 'production' ? environment.BASE_URL : undefined,
inlineStylesheets: 'never'
},
integrations:
[
sitemap({ lastmod: new Date() }),
partytown({ config: { forward: [ 'dataLayer.push' ] } }),
inline({ prefixPath: environment.BASE_URL })
],
output: 'static',
server:
{
host: true,
open: true
},
site: environment.BASE_URL,
trailingSlash: 'never',
vite:
{
css:
{
preprocessorOptions:
{
scss:
{
api: 'modern-compiler'
}
}
},
envDir: './src/global/env',
resolve:
{
alias:
{
'@global/': resolve(dirname, './src/global'),
'@module/': resolve(dirname, './src/module')
}
}
}
});