addyosmani / addyosmani/critical

Add the option of a prefix path

オープン
#578 コメント 3 件 リアクション 0 件 担当者 0 名 GitHub で見る
主要言語
JavaScript
スター
10.3k
フォーク
390
PR マージ指標
30日以内にマージされた PR はありません

説明

in my vite project, the html compiles whit a default url, this url is generated depending on some environment variables in the project so is a dynamic url

`http://localhost:4000/assets/index-awd12431.css`

so this CSS file exists in my dist folder but critical can't find the file because it is unable to search for a path with localhost.

so it will be nice to have a prefixPath option, this way it is possible to ignore the prefix and only search for the files in the current path

```ts
generate({
base: './dist',
inline: true,
src: 'index.html',
extract: true,
prefixPath: 'http://localhost:4000'
});
```
this will omit the `http://localhost:4000` part of the import and get this result `/assets/index-awd12431.css`

コントリビューションガイド

コントリビューションガイドを開く

評価

この issue はまだ評価されていません。

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。