| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- import fs from 'fs';
- export default defineNuxtConfig({
- app: {
- head: {
- title: 'Ossatura',
- meta: [
- { charset: 'utf-8' },
- { name: 'viewport', content: 'width=device-width, initial-scale=1' },
- { hid: 'description', name: 'description', content: '' },
- { name: 'msapplication-TileColor', content: '#324250' },
- { name: 'msapplication-TileImage', content: '/favicon/mstile-144x144.png' }
- ],
- link: [
- { rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }
- ]
- }
- },
- css: [
- 'vuetify/lib/styles/main.sass'
- ],
- modules: [
- [
- '@pinia/nuxt',
- {
- autoImports: [
- // automatically imports `usePinia()`
- 'defineStore',
- // automatically imports `usePinia()` as `usePiniaStore()`
- ['defineStore', 'definePiniaStore']
- ]
- }
- ],
- '@pinia-orm/nuxt',
- 'nuxt-lodash',
- ],
- typescript: {
- strict: true
- },
- build: {
- transpile: ['vuetify']
- },
- vite: {
- define: {
- 'process.env.DEBUG': process.env.DEBUG
- },
- //@ts-ignore
- server : {
- //@ts-ignore
- port: 443,
- hmr: {
- protocol: 'wss'
- }
- }
- }
- })
|