Nuxt/packages/ui-templates/vite.config.ts

37 lines
795 B
TypeScript
Raw Normal View History

import { resolve } from 'node:path'
import { readdirSync } from 'node:fs'
2021-12-22 13:04:06 +00:00
import { defineConfig } from 'vite'
import UnoCSS from 'unocss/vite'
2021-12-22 13:04:06 +00:00
import { DevRenderingPlugin } from './lib/dev'
import { RenderPlugin } from './lib/render'
const r = (...path: string[]) => resolve(__dirname, ...path)
export default defineConfig({
build: {
rollupOptions: {
input: {
...Object.fromEntries(
readdirSync(r('templates')).filter(dir => dir !== 'messages.json').map(dir => [
dir,
r('templates', dir, 'index.html'),
]),
2021-12-22 13:04:06 +00:00
),
index: r('index.html'),
},
},
2021-12-22 13:04:06 +00:00
},
plugins: [
UnoCSS(),
2021-12-22 13:04:06 +00:00
DevRenderingPlugin(),
RenderPlugin(),
2021-12-22 13:04:06 +00:00
],
server: {
fs: {
allow: ['./templates', __dirname],
},
},
2021-12-22 13:04:06 +00:00
})