- Issue created by @coffeemakr
- 🇧🇪Belgium kubrick
I worked around this in my vite.config.js.
build: { outDir: "dist", manifest: true, rollupOptions: { input: [ "src/scss/main.scss", "src/scss/ckeditor.scss", "src/js/*.js", "components/**/*.js", "components/**/*.scss", ], output: { assetFileNames: (assetInfo) => { // dont hash the ckeditor css if (assetInfo.name.match(/ckeditor\.css/)) { return `assets/ckeditor.css`; } return `assets/[name].[hash].[ext]`; }, }, }, },