mirror of
https://github.com/iconify/iconify.git
synced 2024-12-05 02:33:16 +00:00
13 lines
260 B
TypeScript
13 lines
260 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
vue: {
|
|
compilerOptions: {
|
|
isCustomElement: (tag) => tag === 'iconify-icon',
|
|
},
|
|
},
|
|
future: {
|
|
compatibilityVersion: 4,
|
|
},
|
|
compatibilityDate: '2024-07-16',
|
|
});
|