mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-11-22 01:05:34 +03:00
8 lines
167 B
JavaScript
8 lines
167 B
JavaScript
|
import preact from '@preact/preset-vite';
|
||
|
import { defineConfig } from 'vite';
|
||
|
|
||
|
// https://vitejs.dev/config/
|
||
|
export default defineConfig({
|
||
|
plugins: [preact()],
|
||
|
});
|