mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-11-21 16:55:25 +03:00
9d78e67381
- More consistent design for both reply-to status and source status preview - Fixed bugs too - Make sure index.css is always above
16 lines
374 B
JavaScript
16 lines
374 B
JavaScript
import preact from '@preact/preset-vite';
|
|
import { resolve } from 'path';
|
|
import { defineConfig } from 'vite';
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [preact()],
|
|
build: {
|
|
rollupOptions: {
|
|
input: {
|
|
main: resolve(__dirname, 'index.html'),
|
|
compose: resolve(__dirname, 'compose/index.html'),
|
|
},
|
|
},
|
|
},
|
|
});
|