-
Notifications
You must be signed in to change notification settings - Fork 43
/
vite.config.ts
118 lines (112 loc) · 2.54 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
import type { UserConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
// import Inspector from 'vite-plugin-vue-inspector'
import { createSvgIconsPlugin } from 'vite-plugin-svg-icons'
import path from 'path'
import sassChroma from './src/module/plugin/sass-chroma-js'
import type Sass from 'sass'
import presetEnv from 'postcss-preset-env'
import { kebabCase } from 'lodash-es'
import cssnano from 'cssnano'
import sassIcons from './src/module/plugin/custom-icons'
import vueDevTools from 'vite-plugin-vue-devtools'
const PORT = 30000
const sassOptions: Sass.LegacyStringOptions<'sync'> = {
functions: { ...sassChroma, ...sassIcons },
// @ts-expect-error
additionalData: ''
}
const config: UserConfig = {
root: './',
plugins: [
vue(),
vueDevTools({
appendTo: 'src/index.ts'
}),
// VueTypeImports(),
createSvgIconsPlugin({
customDomId: 'ironsworn-sprites',
iconDirs: [
path.resolve(process.cwd(), 'system/assets/icons'),
path.resolve(process.cwd(), 'system/assets/misc')
],
symbolId: 'ironsworn-[dir]-[name]'
})
],
resolve: {
preserveSymlinks: true,
alias: [
{
find: /^style:(.*)/,
replacement: path.resolve(__dirname, 'src/styles', '$1')
},
{
find: /^mixin:(.*)/,
replacement: path.resolve(__dirname, 'src/styles/mixins', '$1')
},
{
find: /^component:(.*)/,
replacement: path.resolve(__dirname, 'src/module/vue/components', '$1')
},
{
find: /^vue$/,
replacement: 'vue/dist/vue.esm-bundler.js'
}
]
},
define: {
'process.env': {}
},
publicDir: 'system',
base: '/systems/foundry-ironsworn/',
server: {
port: 8080,
proxy: {
'^(?!/systems/foundry-ironsworn)': `http://localhost:${PORT}/`,
'/socket.io': {
target: `ws://localhost:${PORT}`,
ws: true
}
}
},
css: {
preprocessorOptions: {
less: {
rewriteUrls: 'local'
},
scss: sassOptions
},
postcss: {
plugins: [presetEnv(), cssnano()]
},
modules: {
generateScopedName(className, filename, _) {
const [file] = path.basename(filename).split('.')
return kebabCase(file) + '__' + kebabCase(className)
}
}
},
build: {
assetsInlineLimit: 0,
outDir: 'dist',
emptyOutDir: true,
sourcemap: true,
reportCompressedSize: true,
minify: false,
lib: {
name: 'ironsworn',
entry: 'src/index.ts',
formats: ['es'],
fileName: () => 'ironsworn.js'
},
rollupOptions: {
output: {
assetFileNames(chunkInfo) {
if (chunkInfo.name === 'style.css') return 'ironsworn.css'
return chunkInfo.name || '(name)'
}
}
}
}
}
export default config