We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
There is a missing comma (,) in the abp.resourcemapping.js file of the @abp/luxon package.
,
abp.resourcemapping.js
If you create a solution with 3.2.0-rc.1, you need to perform the following steps;
yarn
npm install
node_modules\@abp\luxon\abp.resourcemapping.js
module.exports = { mappings: { "@node_modules/luxon/build/global/*.*": "@libs/luxon/", "@node_modules/@abp/luxon/src/*.*": "@libs/abp/luxon/" } }
gulp
yarn gulp
This will add the missing /wwwroot/libs/luxon folder in your project.
/wwwroot/libs/luxon
The text was updated successfully, but these errors were encountered:
c83aa83
hikalkan
No branches or pull requests
There is a missing comma (
,
) in theabp.resourcemapping.js
file of the @abp/luxon package.If you create a solution with 3.2.0-rc.1, you need to perform the following steps;
yarn
(ornpm install
) in the root folder of your MVC UI project.node_modules\@abp\luxon\abp.resourcemapping.js
and change the content as shown below and save the changes:gulp
(oryarn gulp
) command.This will add the missing
/wwwroot/libs/luxon
folder in your project.The text was updated successfully, but these errors were encountered: