79181490

Date: 2024-11-12 14:22:19
Score: 0.5
Natty:
Report link

The following vite config inside nuxt.config.ts prevents small assets from being inlined.

// nuxt.config.ts

export default defineNuxtConfig({
  vite: {
    build: {
      assetsInlineLimit: 0, // This will prevent inlining of any assets
    },
  },
})
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Tobija Fischer