You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

22 line
392 B

  1. // https://nuxt.com/docs/api/configuration/nuxt-config
  2. export default defineNuxtConfig({
  3. devtools: { enabled: true },
  4. css: ['~/assets/css/main.css'],
  5. postcss: {
  6. plugins: {
  7. tailwindcss: {},
  8. autoprefixer: {},
  9. },
  10. },
  11. app: {
  12. head: {
  13. charset: 'utf-8',
  14. viewport: 'width=device-width, initial-scale=1',
  15. }
  16. },
  17. compatibilityDate: '2024-07-10'
  18. })