Amen
Amen
the hashes are different from what I got in my local machine. I haven't found a method in the File class that supports fuzzy search. I will start by getting...
So webpack hashes aren't generated based on the absolute paths, but from the where the root dir of the project. Which means that the hashes are consistent if the test...
The problem appears when for example you're referencing the logo of your website in different components. I opened a PR associated to this issue: https://github.com/laravel-mix/laravel-mix/issues/3156 and added a test to...
CRA bundles images with a hash by default
The error thrown while building: ``` Compiling Mix Error: Prevent writing to file that only differs in casing or query string from already written file. This will lead to a...
a workaround: ``` mix.override((webpackConfig) => { webpackConfig.module.rules.find( (r) => r.test.source == /(\.(png|jpe?g|gif|webp|avif)$|^((?!font).)*\.svg$)/.source, ).use[0].options.name = (path) => { if (!/node_modules|bower_components/.test(path)) { return 'images/[name].[hash:8].[ext]?[hash:8]'; } return ( 'images/vendor/' + path .replace(/\\/g, '/')...
so I have `NODE_ENV=development` set on my machine, unsetting that resolved the issue. Now do we want to enforce the value of it to production for the serve task? if...
tried this with: - deno 1.38.1 - prisma 5.5.2 ``` import { type PrismaClient } from "./src/generated/client/index.d.ts"; import { createRequire } from "node:module"; const require = createRequire(import.meta.url); const Prisma =...