Files
DLE/frontend/vite.config.js
2025-02-18 21:56:51 +03:00

16 lines
321 B
JavaScript

import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
export default defineConfig({
plugins: [
vue({
template: {
compilerOptions: {
isCustomElement: (tag) =>
tag.startsWith('appkit-') ||
tag.startsWith('w3m-')
}
}
})
]
});