#Changes are not reflected any more not on dev nor on Build

1 messages · Page 1 of 1 (latest)

iron condor

Since a short period of time it started to no display my changes any more

vite config

import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import path from 'path'

// https://vitejs.dev/config/
export default defineConfig(() => {
  
  return {
    plugins: [vue()],
    publicDir: 'public',
    resolve: {
      alias: {
        '@': path.resolve(__dirname, './src'),
      },
    },
    build: {
      outDir: 'dist',
      assetsDir: 'assets',
      minify: 'terser',
      terserOptions: {
        compress: {
          drop_console: true,
          drop_debugger: true,
        },
      }
    }
  }
})

debug https://gist.github.com/DevKanui/5915f33b657b6271ccc3b3e2cd16b71a

Like it recognizes them but does not display the changes not in dev not in build

I changed and added test but it does not display on the website
<h1 class="text-4xl md:text-5xl font-bold mb-4">Discordium Discord Servers test</h1>

I cleared cache on the website and I deleted and installed mode nodules again im out of ideas