mirror of
https://github.com/CCBlueX/LiquidBounce.git
synced 2025-09-06 09:46:38 +00:00

* upgrade dependencies * disable dev mode * remove route desync check * fix depricated @import warnings * use modern sass preprocessor api * fix sass color adjustment function deprecation warnings * fix unused style warning * fix aria-label warning * fix self-closing div warning * fix color of main menu icons not resetting when clicked
16 lines
311 B
TypeScript
16 lines
311 B
TypeScript
import {defineConfig} from 'vite'
|
|
import {svelte} from '@sveltejs/vite-plugin-svelte'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [svelte()],
|
|
base: "",
|
|
css: {
|
|
preprocessorOptions: {
|
|
scss: {
|
|
api: "modern"
|
|
}
|
|
}
|
|
}
|
|
})
|