mirror of
https://github.com/NebulaServices/Nebula.git
synced 2025-05-17 13:30:00 -04:00
8 lines
236 B
TypeScript
8 lines
236 B
TypeScript
import million from 'million/compiler';
|
|
import { defineConfig } from 'vite';
|
|
import preact from '@preact/preset-vite';
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [million.vite({ auto: true }), preact()],
|
|
});
|