mirror of
https://github.com/rio-labs/rio.git
synced 2026-01-06 13:19:51 -06:00
17 lines
364 B
JavaScript
17 lines
364 B
JavaScript
import { defineConfig } from "vite";
|
|
import { compression } from "vite-plugin-compression2";
|
|
|
|
export default defineConfig({
|
|
build: {
|
|
rollupOptions: {
|
|
external: [/^\/rio\/asset\/.*/],
|
|
},
|
|
},
|
|
plugins: [
|
|
compression({
|
|
exclude: /.*index\.html$/,
|
|
deleteOriginalAssets: true,
|
|
}),
|
|
],
|
|
});
|