From 0092cab83427db45286bbe73c5d51bcd1e6b7828 Mon Sep 17 00:00:00 2001 From: "dr.dimitru" <1686778+dr-dimitru@users.noreply.github.com> Date: Mon, 17 Feb 2025 17:47:22 +0200 Subject: [PATCH 1/2] Fix link to "PostCSS Plugins" - [available plugins]() link was leading to broken parked domain with ads --- v3-docs/docs/packages/standard-minifier-css.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v3-docs/docs/packages/standard-minifier-css.md b/v3-docs/docs/packages/standard-minifier-css.md index f3d55e8ea0..ace7a833e8 100644 --- a/v3-docs/docs/packages/standard-minifier-css.md +++ b/v3-docs/docs/packages/standard-minifier-css.md @@ -24,7 +24,7 @@ module.exports = { > The example config enables the `autoprefixer` postcss plugin. You can install the plugin by running `meteor npm install -D autoprefixer`. -Learn more about [configuring postcss](https://github.com/postcss/postcss-load-config#packagejson) or find a list of [available plugins](https://www.postcss.parts/). +Learn more about [configuring postcss](https://github.com/postcss/postcss-load-config#packagejson) or find a list of [available plugins](https://postcss.org/docs/postcss-plugins). After making changes to the PostCSS Config, `meteor` must be restarted for it to use the new config. From b0bf53cc023c58844fc660f743bb471b12239109 Mon Sep 17 00:00:00 2001 From: David Ihl <111972510+Davidihl@users.noreply.github.com> Date: Mon, 24 Feb 2025 14:47:27 +0100 Subject: [PATCH 2/2] Update 7.adding-user-accounts.md use `insertAsync` as introduced in Step 2 instead of `insert` --- v3-docs/docs/tutorials/react/7.adding-user-accounts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v3-docs/docs/tutorials/react/7.adding-user-accounts.md b/v3-docs/docs/tutorials/react/7.adding-user-accounts.md index 60491ef06d..6b1513afbb 100644 --- a/v3-docs/docs/tutorials/react/7.adding-user-accounts.md +++ b/v3-docs/docs/tutorials/react/7.adding-user-accounts.md @@ -271,7 +271,7 @@ import { Accounts } from "meteor/accounts-base"; import { TasksCollection } from "/imports/api/TasksCollection"; const insertTask = (taskText, user) => - TasksCollection.insert({ + TasksCollection.insertAsync({ text: taskText, userId: user._id, createdAt: new Date(),