-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.js
29 lines (27 loc) · 872 Bytes
/
vite.config.js
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
import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import fs from 'fs';
import { globSync } from 'fast-glob';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue(),
{
load(id) {
if (id.endsWith('.vue')) {
const source = fs.readFileSync(id).toString().replace(/inject-css:\s*"([^"]+)";/g, replace => {
const pattern = replace.match(/"([^"]+)/)[1];
return globSync(pattern, { absolute: true }).map(file => fs.readFileSync(file)).join(';');
});
return source;
}
}
}
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
}
})