There is a missing comma (,) in the abp.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;
- Execute
yarn (or npm install) in the root folder of your MVC UI project.
- Open the file
node_modules\@abp\luxon\abp.resourcemapping.js and change the content as shown below and save the changes:
module.exports = {
mappings: {
"@node_modules/luxon/build/global/*.*": "@libs/luxon/",
"@node_modules/@abp/luxon/src/*.*": "@libs/abp/luxon/"
}
}
- execute the
gulp (or yarn gulp) command.
This will add the missing /wwwroot/libs/luxon folder in your project.
There is a missing comma (
,) in theabp.resourcemapping.jsfile 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.jsand change the content as shown below and save the changes:gulp(oryarn gulp) command.This will add the missing
/wwwroot/libs/luxonfolder in your project.