-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathvite.config.js
39 lines (38 loc) · 990 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
30
31
32
33
34
35
36
37
38
39
import { quasar, transformAssetUrls } from '@quasar/vite-plugin'
import vue from '@vitejs/plugin-vue'
import path from 'path'
import { QuasarResolver } from 'unplugin-vue-components/resolvers'
import Components from 'unplugin-vue-components/vite'
import { defineConfig } from 'vite'
import monacoEditorPlugin from 'vite-plugin-monaco-editor'
export default defineConfig({
base: '',
server: {
host: '0.0.0.0',
open: true
},
publicDir: 'public',
resolve: {
alias: {
'~': path.resolve(__dirname, './src')
}
},
plugins: [
vue({
template: { transformAssetUrls }
}),
Components({
resolvers: [QuasarResolver()]
}),
quasar({
autoImportComponentCase: 'pascal'
}),
monacoEditorPlugin({
languageWorkers: ['editorWorkerService', 'json'],
publicPath: 'https://unpkg.com/[email protected]/cdn'
})
],
define: {
PACKAGE_VERSION: JSON.stringify(process.env.npm_package_version)
}
})