Skip to content

Commit

Permalink
Correct prefix in CSS
Browse files Browse the repository at this point in the history
  • Loading branch information
vania-pooh committed Jul 27, 2021
1 parent 9322d6a commit 9cdbc0d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion webpack.dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ module.exports = merge(common, {
{
loader: "sass-loader",
options: {
additionalData: "$prefix: \"" + (process.env.NODE_ENV === "production" ? "/moon" : "") + "\";"
additionalData: "$prefix: \"" + (process.env.NODE_ENV === "production" ? "/moon-cloud" : "") + "\";"
}
}]
}
Expand Down
2 changes: 1 addition & 1 deletion webpack.prod.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ module.exports = merge(common, {
{
loader: "sass-loader",
options: {
additionalData: "$prefix: \"" + (process.env.NODE_ENV === "production" ? "/moon" : "") + "\";"
additionalData: "$prefix: \"" + (process.env.NODE_ENV === "production" ? "/moon-cloud" : "") + "\";"
}
}]
}
Expand Down

0 comments on commit 9cdbc0d

Please sign in to comment.