-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
40 lines (38 loc) · 927 Bytes
/
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
import { defineConfig } from 'vite';
import { svelte } from '@sveltejs/vite-plugin-svelte';
import { viteSingleFile } from 'vite-plugin-singlefile';
import path from 'path';
// https://vitejs.dev/config/
export default defineConfig({
css: {
preprocessorOptions: {
scss: {
api: 'modern-compiler',
},
sass: {
api: 'modern-compiler',
},
},
},
plugins: [
svelte({
onwarn(warning, defaultHandler) {
// don't warn on <marquee> elements, cos they're cool
if (warning.code === 'a11y-no-static-element-interactions') return;
// handle all other warnings normally
if (defaultHandler !== void 0) {
defaultHandler(warning);
}
},
}),
viteSingleFile(),
],
resolve: {
alias: [
{
find: '@images',
replacement: path.resolve(__dirname, './src/assets/images'),
},
],
},
});