-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvite-sf.config.mjs
More file actions
75 lines (71 loc) · 1.74 KB
/
vite-sf.config.mjs
File metadata and controls
75 lines (71 loc) · 1.74 KB
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
// Plugins
import Components from 'unplugin-vue-components/vite'
import Vue from '@vitejs/plugin-vue'
import Vuetify, { transformAssetUrls } from 'vite-plugin-vuetify'
import ViteFonts from 'unplugin-fonts/vite'
// Utilities
import { defineConfig } from 'vite'
import { fileURLToPath, URL } from 'node:url'
import { viteSingleFile } from "vite-plugin-singlefile"
import { renameSync } from 'fs'
import { join } from 'path'
import pkg from './package.json' assert { type: 'json' } // Ensure your Node version supports JSON modules
// Custom plugin to rename index.html after build
function renameHtmlPlugin() {
return {
name: 'rename-html',
closeBundle() {
const distDir = 'dist'
const oldPath = join(distDir, 'index.html')
const newPath = join(distDir, `mcdcf-v${pkg.version}.html`)
try {
renameSync(oldPath, newPath)
console.log(`Renamed ${oldPath} to ${newPath}`)
} catch (error) {
console.error('Error renaming HTML file:', error)
}
}
}
}
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
Vue({
template: { transformAssetUrls }
}),
// https://github.com/vuetifyjs/vuetify-loader/tree/master/packages/vite-plugin#readme
Vuetify(),
Components(),
viteSingleFile(),
renameHtmlPlugin()
],
define: { 'process.env': {} },
build: {
outDir: 'dist',
emptyOutDir: true,
},
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
},
extensions: [
'.js',
'.json',
'.jsx',
'.mjs',
'.ts',
'.tsx',
'.vue',
],
},
server: {
port: 3000,
},
css: {
preprocessorOptions: {
sass: {
api: 'modern-compiler',
},
},
},
})