-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathastro.config.mjs
106 lines (93 loc) · 2.26 KB
/
astro.config.mjs
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
import path from 'path';
import { fileURLToPath } from 'url';
import { defineConfig } from 'astro/config';
import image from '@astrojs/image';
import mdx from '@astrojs/mdx';
import partytown from '@astrojs/partytown';
import sitemap from '@astrojs/sitemap';
import tailwind from '@astrojs/tailwind';
import inject from '@rollup/plugin-inject';
// const webpack = require('webpack');
// module.exports = defineConfig({
// transpileDependencies: true,
// configureWebpack: {
// plugins: [
import { SITE } from './src/config.mjs';
import { remarkReadingTime } from './src/utils/frontmatter.mjs';
const __dirname = path.dirname(fileURLToPath(import.meta.url));
const whenExternalScripts = (items = []) =>
SITE.googleAnalyticsId ? (Array.isArray(items) ? items.map((item) => item()) : [items()]) : [];
import GlobalsPolyfills from "@esbuild-plugins/node-globals-polyfill";
import nodePolyfills from 'rollup-plugin-polyfill-node';
export default defineConfig({
site: SITE.origin,
base: SITE.basePathname,
trailingSlash: SITE.trailingSlash ? 'always' : 'never',
output: 'static',
integrations: [
tailwind({
config: {
applyBaseStyles: false,
},
}),
sitemap(),
image({
serviceEntryPoint: '@astrojs/image/sharp',
}),
mdx(),
...whenExternalScripts(() =>
partytown({
config: { forward: ['dataLayer.push'] },
})
),
],
markdown: {
remarkPlugins: [remarkReadingTime],
extendDefaultPlugins: true,
},
vite: {
// define: {
// global: {}
// },
resolve: {
alias: {
'~': path.resolve(__dirname, './src'),
https: "https-browserify",
http: "http-browserify",
stream: "stream-browserify",
Buffer:'buffer',
// Buffer:'buffer/',
buffer:'buffer/',
buf:'buffer/',
dgram:'dgram-browserify'
},
},
},
build: {
rollupOptions: {
plugins: [
nodePolyfills(),
inject({
// include: ['node_modules/@ledgerhq/**'],
modules: { Buffer: ['buffer', 'Buffer'], }
})
],
},
},
optimizeDeps: {
// https://github.com/vitejs/vite/discussions/2785
esbuildOptions: {
// Node.js global to browser globalThis
define: {
global: "globalThis",
},
// Enable esbuild polyfill plugins
plugins: [
GlobalsPolyfills({
process: true,
buffer: true,
}),
],
},
},
});