23 lines
517 B
TypeScript
23 lines
517 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
css: [
|
|
'~/my-bulma-project.css',
|
|
'~/assets/styles/main.scss'
|
|
],
|
|
app: {
|
|
head: {
|
|
script: [
|
|
{ src: '/js/html2pdf.bundle.min.js' },
|
|
{ src: '/js/html2canvas.min.js' }
|
|
]
|
|
}
|
|
},
|
|
modules: ['@pinia/nuxt', '@nuxt/image', 'pinia-plugin-persistedstate/nuxt'],
|
|
components: [
|
|
{
|
|
path: '~/components'
|
|
}
|
|
],
|
|
compatibilityDate: '2025-07-01',
|
|
devtools: { enabled: true }
|
|
}) |