@ligonsker In your vite.config.js add the below code in defineconfig
import path from 'path'; // add import for path
resolve: {
alias: [{
find: '../font',
replacement: path.resolve(__dirname, 'resources/assets/fonts'), // replace this path with your actual path
}],
}