diff --git a/README.md b/README.md index 534b192..1b204d6 100644 --- a/README.md +++ b/README.md @@ -222,7 +222,7 @@ with a specified value. As an example, if you want to always show the subline in the following rule: ```css -[class^="subline__Logo"] { +[class^="Logo_subline"] { display: block; opacity: 1; } diff --git a/package.json b/package.json index 373b663..3d181fd 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "techradar": "./bin/techradar.js" }, "scripts": { - "dev": "next dev --turbo", + "dev": "next dev", "build:icons": "npx @svgr/cli --typescript --no-dimensions --no-prettier --out-dir src/components/Icons -- src/icons", "build:data": "tsx scripts/buildData.ts", "build": "next build", diff --git a/postcss.config.js b/postcss.config.js index e71c432..b80f460 100644 --- a/postcss.config.js +++ b/postcss.config.js @@ -1,23 +1,17 @@ module.exports = { - plugins: - process.env.NODE_ENV === "production" - ? [ - "postcss-nested", - [ - "postcss-preset-env", - { - autoprefixer: { - flexbox: "no-2009", - }, - stage: 3, - features: { - "custom-properties": false, - }, - }, - ], - ] - : [ - // No transformations in development - // because it won't affect turbo - ], + plugins: [ + "postcss-nested", + [ + "postcss-preset-env", + { + autoprefixer: { + flexbox: "no-2009", + }, + stage: 3, + features: { + "custom-properties": false, + }, + }, + ], + ], };