mirror of
https://github.com/revanced/revanced-website.git
synced 2025-04-30 14:44:28 +02:00
17 lines
325 B
JavaScript
17 lines
325 B
JavaScript
import { sveltekit } from '@sveltejs/kit/vite';
|
|
import { imagetools } from 'vite-imagetools'
|
|
|
|
import path from 'path';
|
|
|
|
/** @type {import('vite').UserConfig} */
|
|
const config = {
|
|
plugins: [sveltekit(), imagetools()],
|
|
resolve: {
|
|
alias: {
|
|
'$images': path.resolve('./images'),
|
|
},
|
|
},
|
|
};
|
|
|
|
export default config;
|