Skip to content

Commit

Permalink
style: rename robots meta tag setting
Browse files Browse the repository at this point in the history
  • Loading branch information
nsprenkle committed Nov 18, 2024
1 parent 198a4d9 commit 6100fd8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion config/webpack.dev-stage.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ module.exports = merge(commonConfig, {
chunks: ['app'],
FAVICON_URL: process.env.FAVICON_URL || null,
OPTIMIZELY_PROJECT_ID: process.env.OPTIMIZELY_PROJECT_ID || null,
ROBOT_CONTENT_TAG: process.env.ROBOT_CONTENT_TAG || null, // Configures "content" value of a "robots" meta tag
META_TAG_ROBOTS_CONTENT_ATTR: process.env.META_TAG_ROBOTS_CONTENT_ATTR || null,
NODE_ENV: process.env.NODE_ENV || null,
}),
new Dotenv({
Expand Down
2 changes: 1 addition & 1 deletion config/webpack.dev.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ module.exports = merge(commonConfig, {
chunks: ['app'],
FAVICON_URL: process.env.FAVICON_URL || null,
OPTIMIZELY_PROJECT_ID: process.env.OPTIMIZELY_PROJECT_ID || null,
ROBOT_CONTENT_TAG: process.env.ROBOT_CONTENT_TAG || null, // Configures "content" value of a "robots" meta tag
META_TAG_ROBOTS_CONTENT_ATTR: process.env.META_TAG_ROBOTS_CONTENT_ATTR || null,
NODE_ENV: process.env.NODE_ENV || null,
}),
new Dotenv({
Expand Down
2 changes: 1 addition & 1 deletion config/webpack.prod.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ module.exports = merge(commonConfig, {
chunks: ['app'],
FAVICON_URL: process.env.FAVICON_URL || null,
OPTIMIZELY_PROJECT_ID: process.env.OPTIMIZELY_PROJECT_ID || null,
ROBOT_CONTENT_TAG: process.env.ROBOT_CONTENT_TAG || null, // Configures "content" value of a "robots" meta tag
META_TAG_ROBOTS_CONTENT_ATTR: process.env.META_TAG_ROBOTS_CONTENT_ATTR || null,
NODE_ENV: process.env.NODE_ENV || null,
}),
new Dotenv({
Expand Down

0 comments on commit 6100fd8

Please sign in to comment.