Stephen Li
Stephen Li
I'm getting 404s for my images with `cacheDirectory: true` in development mode. I haven't tried it in production. The public paths are the same but dev server is unable to...
I tried setting ``` adapter: require('responsive-loader/sharp'), outputPath: path.resolve(myRootDir, 'static', 'public'), publicPath: '/public', cacheDirectory: true, ``` ~~But don't see any generated images in my static directory~~ Nevermind I reread your comment....
I've been using v3 for awhile now and it has greatly reduced my build times. One pain point I've encountered is that If I add new images while using webpack-dev-server,...
This plugin doesn't include a commonjs build. Your bundler is using `dist/highlightjs-vue.min.js` (for web browsers only) instead of `dist/highlightjs-vue.esm.min.js`. Also you forgot to hide your file path on the last...
I'm very interested in an ESM release so I can enable tree shaking. Even though I use maybe 3 languages, I have to bundle the entire package and it's now...
I was not aware there's already an ESM export. I just assumed it was CJS because in order for webpack to tree shake the unused files, *every* file needs to...
I don't like having to duplicate code ```ts const test = base.extend({ ... }) const authTest = test.extend({ ... }) // Before test.describe('desc', () => { test.beforeEach(() => { ......
@joshgoebel I think some bundlers ignore side effect imports and only look at package.json's `sideEffects` field. I think you need to add `./lib/common.js` to [highlight.js package.json](https://github.com/highlightjs/highlight.js/blob/main/package.json#L35).
This is expected behavior as webpack will treeshake unused imports out of the bundle in production. If you are not planning on using `hljsCommon` object in your code (i.e. use...
You need to provide a minimum reproduction repo as there's not enough information