-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.mjs
62 lines (58 loc) · 1.45 KB
/
vite.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
import {
compatPrebuild,
hbs,
optimizeDeps,
resolver,
scripts,
templateTag,
} from '@embroider/vite';
import { babel } from '@rollup/plugin-babel';
import { resolve } from 'path';
import { defineConfig } from 'vite';
const root = 'node_modules/.embroider/rewritten-app';
export default defineConfig({
css: {
lightningcss: {
cssModules: {
pattern: 'embroider-css-modules__[hash]-[local]',
},
},
transformer: 'lightningcss',
},
root,
// esbuild in vite does not support decorators
esbuild: false,
cacheDir: resolve('node_modules', '.vite'),
plugins: [
hbs(),
templateTag(),
scripts(),
resolver(),
compatPrebuild(),
babel({
babelHelpers: 'runtime',
// this needs .hbs because our hbs() plugin above converts them to
// javascript but the javascript still also needs babel, but we don't want
// to rename them because vite isn't great about knowing how to hot-reload
// them if we resolve them to made-up names.
extensions: ['.gjs', '.js', '.hbs', '.ts', '.gts'],
}),
],
optimizeDeps: optimizeDeps(),
server: {
port: 4200,
watch: {
ignored: ['!**/node_modules/.embroider/rewritten-app/**'],
},
},
build: {
cssMinify: 'lightningcss',
outDir: resolve(process.cwd(), 'dist'),
rollupOptions: {
input: {
main: resolve(root, 'index.html'),
tests: resolve(root, 'tests/index.html'),
},
},
},
});