Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Filter doesn't work #170

Open
Th3S4mur41 opened this issue Mar 9, 2022 · 0 comments
Open

Filter doesn't work #170

Th3S4mur41 opened this issue Mar 9, 2022 · 0 comments

Comments

@Th3S4mur41
Copy link

Dependencies:

  • "postcss-cli": "9.1.0",
  • "postcss-import": "14.0.2",
  • "postcss-url": "10.1.3"
  • "@fontsource/raleway": "4.5.0"

CSS Code

@import '@fontsource/raleway/variable.css';

PostCSS config

module.exports = {
  plugins: [
    require('postcss-import'),
    require('postcss-url')([
    {
      filter: '**/*.woff2',
      url: (asset) => {
        return `node_modules/@fontsource/raleway/${asset.url.replace('./', '')}`;
      }
    }
  ]
};

Error

Running the post CSS Cli return output containing the following part:

@font-face {
  font-family: 'RalewayVariable';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url('./files/raleway-cyrillic-variable-wghtOnly-normal.woff2') format('woff2');
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

If I remove the filter, I get the expected output:

@font-face {
  font-family: 'RalewayVariable';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url('node_modules/@fontsource/raleway/files/raleway-cyrillic-variable-wghtOnly-normal.woff2') format('woff2');
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant