generated from templatus/templatus-vue
-
Notifications
You must be signed in to change notification settings - Fork 5
/
vite.config.mts
44 lines (43 loc) · 928 Bytes
/
vite.config.mts
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
import { defineConfig } from 'vite';
import ViteRails from 'vite-plugin-rails';
import { svelte } from '@sveltejs/vite-plugin-svelte';
import { sveltePreprocess } from 'svelte-preprocess';
import { resolve } from 'path';
export default defineConfig({
build: {
assetsInlineLimit: 0,
rollupOptions: {
output: {
manualChunks(id) {
if (id.includes('node_modules')) {
return 'vendor';
}
},
},
},
},
plugins: [
ViteRails({
fullReload: {
additionalPaths: ['config/routes.rb', 'app/views/**/*'],
},
}),
svelte({
prebundleSvelteLibraries: true,
preprocess: sveltePreprocess({
postcss: true,
}),
}),
],
resolve: {
alias: {
'@': resolve(__dirname, 'app/javascript'),
},
},
server: {
hmr: {
host: 'vite.templatus-inertia.test',
clientPort: 443,
},
},
});