mirror of
https://github.com/Instadapp/smart-lookup.git
synced 2024-07-29 22:38:20 +00:00
11 lines
239 B
TypeScript
11 lines
239 B
TypeScript
|
import { defineNuxtConfig } from 'nuxt'
|
||
|
|
||
|
// https://v3.nuxtjs.org/api/configuration/nuxt.config
|
||
|
export default defineNuxtConfig({
|
||
|
modules: ['@nuxtjs/tailwindcss'],
|
||
|
|
||
|
build: {
|
||
|
transpile: [/ethers/, "@heroicons/vue"]
|
||
|
}
|
||
|
})
|