-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
75 lines (67 loc) · 2.29 KB
/
vite.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
import { defineConfig } from 'vite';
import { VitePWA } from 'vite-plugin-pwa';
import { resolve } from 'path';
import handlebars from 'vite-plugin-handlebars';
import string from 'vite-plugin-string';
import fs from 'fs';
import path from 'path';
import { fileURLToPath } from 'url';
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
// Функция для поиска всех файлов .hbs во вложенных папках
function findHandlebarsTemplates(dir) {
const templates = {};
function scanDirectory(directory) {
const files = fs.readdirSync(directory);
files.forEach((file) => {
const fullPath = path.resolve(directory, file);
const stat = fs.statSync(fullPath);
if (stat.isDirectory()) {
// Если это папка, сканируем её рекурсивно
scanDirectory(fullPath);
} else if (stat.isFile() && file.endsWith('.hbs')) {
const relativePath = path.relative(dir, fullPath);
const templateName = relativePath.replace(/\\/g, '/').replace('.hbs', '');
templates[templateName] = fullPath;
}
});
}
scanDirectory(dir);
return templates;
}
// Поиск всех шаблонов Handlebars во вложенных папках src
const templates = findHandlebarsTemplates(path.resolve(__dirname, 'src/scripts'));
export default defineConfig({
plugins: [
string({ include: '**/*.hbs' }), // Добавляем поддержку импорта файлов .hbs как строк
handlebars({
partialDirectory: path.resolve(__dirname, 'src/scripts'),
}),
VitePWA({
registerType: 'autoUpdate',
}),
],
build: {
outDir: './dist/',
sourcemap: true,
rollupOptions: {
input: {
main: path.resolve(__dirname, 'index.html'), // Явно указываем index.html
...templates, // Добавляем все найденные шаблоны
},
external: [resolve(__dirname, 'services/app/app.ts')],
},
},
server: {
port: 3000, // Порт для dev-сервера
},
preview: {
// host: '0.0.0.0',
port: 3000,
},
resolve: {
alias: {
'@': resolve(__dirname, 'src'), // Правильное задание алиаса для пути
},
},
});