-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathesbuild.config.mjs
More file actions
30 lines (29 loc) · 819 Bytes
/
Copy pathesbuild.config.mjs
File metadata and controls
30 lines (29 loc) · 819 Bytes
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
import * as esbuild from 'esbuild'
import { sassPlugin } from 'esbuild-sass-plugin'
import cssnano from 'cssnano';
import postcss from 'postcss';
import postcssPresetEnv from 'postcss-preset-env';
import path from 'path';
await esbuild.build({
entryPoints: ['src/js/*.js'],
bundle: true,
outdir: 'build',
minify: true,
minifyIdentifiers: true,
treeShaking: true,
plugins: [
sassPlugin({
type: "style",
async transform(source, resolveDir) {
const { css } = await postcss([cssnano, postcssPresetEnv({ stage: 0 })]).process(source, {
from: path.join(resolveDir, 'styles.scss'),
});
return css
}
})
],
define: {
'process.env.GTAG': `"${process.env.GTAG}"`,
'process.env.PRIVACY_POLICY_URL': `"${process.env.PRIVACY_POLICY_URL}"`
}
})