6 lines
215 B
TypeScript
6 lines
215 B
TypeScript
![]() |
import type * as vite from 'vite';
|
||
|
import type { AstroPluginOptions } from '../@types/astro';
|
||
|
export default function assets({ settings, logging, mode, }: AstroPluginOptions & {
|
||
|
mode: string;
|
||
|
}): vite.Plugin[];
|