22 lines
408 B
TypeScript
22 lines
408 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
compatibilityDate: '2025-05-15',
|
|
devtools: { enabled: true },
|
|
modules: ['@nuxtjs/tailwindcss'],
|
|
app: {
|
|
head: {
|
|
script: [
|
|
{
|
|
src: '/qwebchannel.js',
|
|
defer: true
|
|
}
|
|
]
|
|
}
|
|
},
|
|
tailwindcss: {
|
|
exposeConfig: true,
|
|
viewer: true,
|
|
config: {
|
|
}
|
|
}
|
|
}) |