Get 2024 Templates Mega Bundle!14 Bootstrap, Vue & React Templates + 3 Vector Sets
Get for 99$

ASP.NET Core 6 Blazor: Uncaught ReferenceError: KTUtil is not defined with v8.0.38


HI,

I've followed instructions as referenced here:

https://preview.keenthemes.com/metronic8/demo1/documentation/getting-started/integration/blazor.html

and noted the previous support posts here:

https://devs.keenthemes.com/question/confusing-documentation-on-blazor-integration
https://devs.keenthemes.com/question/balzor-server-with-metronic-v8037

but I get the error:

Uncaught ReferenceError: KTUtil is not defined

in the browser console when building using "npm run build --demo1"

It looks like the file "metronic_v8.0.38\html\tools\webpack\scripts.demo1.js" isn;t being included in the build.

Can you please advise how to fix?

Thanks


Text formatting options
Submit
Here's a how to add some HTML formatting to your comment:
  • <pre></pre> for JS codes block
  • <pre lang="html"></pre> for HTML code block
  • <pre lang="scss"></pre> for SCSS code block
  • <pre lang="php"></pre> for PHP code block
  • <code></code> for single line of code
  • <strong></strong> to make things bold
  • <em></em> to emphasize
  • <ul><li></li></ul>  to make list
  • <ol><li></li></ol>  to make ordered list
  • <h3></h3> to make headings
  • <a></a> for links
  • <img> to paste in an image
  • <blockquote></blockquote> to quote somebody
  • happy  :)
  • shocked  :|
  • sad  :(

Replies (5)


FYI I've used the same webpack build script into an ASP.NET Core MVC Project and it works fine.



Hi,

In the webpack.config.js file, could you please modify some line of code?


let demo = getDemos(rootPath)[0];


Please try to change it to


let demo = "demo1";


Thanks



Hi Faisel,

That doesn't help unfortunately. The value was being returned correctly anyway.

The log reads as follows:

0 verbose cli C:\Program Files\nodejs\node.exe C:\Users\Mark\AppData\Roaming\npm\node_modules\npm\bin\npm-cli.js
1 info using npm@8.12.1
2 info using node@v12.14.1
3 timing npm:load:whichnode Completed in 0ms
4 timing config:load:defaults Completed in 1ms
5 timing config:load:file:C:\Users\Mark\AppData\Roaming\npm\node_modules\npm\npmrc Completed in 7ms
6 timing config:load:builtin Completed in 7ms
7 timing config:load:cli Completed in 7ms
8 timing config:load:env Completed in 1ms
9 timing config:load:file:C:\Users\Mark\source\repos\metronic_v8.0.38\html\tools\.npmrc Completed in 0ms
10 timing config:load:project Completed in 3ms
11 timing config:load:file:C:\Users\Mark\.npmrc Completed in 1ms
12 timing config:load:user Completed in 1ms
13 timing config:load:file:C:\Users\Mark\AppData\Roaming\npm\etc\npmrc Completed in 0ms
14 timing config:load:global Completed in 0ms
15 timing config:load:validate Completed in 0ms
16 timing config:load:credentials Completed in 1ms
17 timing config:load:setEnvs Completed in 1ms
18 timing config:load Completed in 23ms
19 timing npm:load:configload Completed in 23ms
20 timing npm:load:mkdirpcache Completed in 2ms
21 timing npm:load:mkdirplogs Completed in 0ms
22 verbose title npm run build
23 verbose argv "run" "build" "--demo1" "--loglevel" "verbose" "--force"
24 timing npm:load:setTitle Completed in 3ms
25 timing config:load:flatten Completed in 3ms
26 timing npm:load:display Completed in 37ms
27 verbose logfile logs-max:10 dir:C:\Users\Mark\AppData\Local\npm-cache\_logs
28 verbose logfile C:\Users\Mark\AppData\Local\npm-cache\_logs\2022-06-11T13_16_22_304Z-debug-0.log
29 timing npm:load:logFile Completed in 9ms
30 timing npm:load:timers Completed in 0ms
31 timing npm:load:configScope Completed in 0ms
32 warn using --force Recommended protections disabled.
33 timing npm:load Completed in 81ms
34 silly logfile start cleaning logs, removing 1 files
35 silly logfile done cleaning log files
36 timing command:run Completed in 33920ms
37 verbose exit 0
38 timing npm Completed in 34024ms
39 info ok


And I've added some console logging to the script:

npm verb cli C:\Program Files\nodejs\node.exe C:\Users\Mark\AppData\Roaming\npm\node_modules\npm\bin\npm-cli.js
npm info using npm@8.12.1
npm info using node@v12.14.1
npm timing npm:load:whichnode Completed in 0ms
npm timing config:load:defaults Completed in 1ms
npm timing config:load:file:C:\Users\Mark\AppData\Roaming\npm\node_modules\npm\npmrc Completed in 7ms
npm timing config:load:builtin Completed in 7ms
npm timing config:load:cli Completed in 7ms
npm timing config:load:env Completed in 1ms
npm timing config:load:file:C:\Users\Mark\source\repos\metronic_v8.0.38\html\tools\.npmrc Completed in 0ms
npm timing config:load:project Completed in 3ms
npm timing config:load:file:C:\Users\Mark\.npmrc Completed in 1ms
npm timing config:load:user Completed in 1ms
npm timing config:load:file:C:\Users\Mark\AppData\Roaming\npm\etc\npmrc Completed in 0ms
npm timing config:load:global Completed in 0ms
npm timing config:load:validate Completed in 0ms
npm timing config:load:credentials Completed in 1ms
npm timing config:load:setEnvs Completed in 1ms
npm timing config:load Completed in 23ms
npm timing npm:load:configload Completed in 23ms
npm timing npm:load:mkdirpcache Completed in 2ms
npm timing npm:load:mkdirplogs Completed in 0ms
npm verb title npm run build
npm verb argv "run" "build" "--demo1" "--loglevel" "verbose" "--force"
npm timing npm:load:setTitle Completed in 3ms
npm timing config:load:flatten Completed in 3ms
npm timing npm:load:display Completed in 37ms
npm verb logfile logs-max:10 dir:C:\Users\Mark\AppData\Local\npm-cache\_logs
npm verb logfile C:\Users\Mark\AppData\Local\npm-cache\_logs\2022-06-11T13_16_22_304Z-debug-0.log
npm timing npm:load:logFile Completed in 9ms
npm timing npm:load:timers Completed in 0ms
npm timing npm:load:configScope Completed in 0ms
npm WARN using --force Recommended protections disabled.
npm timing npm:load Completed in 81ms

> metronic@8.0.38 build
> webpack

rootPath C:\Users\Mark\source\repos\metronic_v8.0.38\htmls
coreSrcPath C:\Users\Mark\source\repos\metronic_v8.0.38\html/src
args [ 'demo1' ]
theme metronic
demo demo1
demoPath C:\Users\Mark\source\repos\metronic_v8.0.38\html/demo1
distPath C:/Users/Mark/source/repos/OPOC/OPOC.Web.Blazor/wwwroot
assetDistPath C:/Users/Mark/source/repos/OPOC/OPOC.Web.Blazor/wwwroot/assets
srcPath C:\Users\Mark\source\repos\metronic_v8.0.38\html/demo1/src
./webpack/plugins/custom/ckeditor/ckeditor-balloon-block.js true
./webpack/plugins/custom/ckeditor/ckeditor-balloon.js true
./webpack/plugins/custom/ckeditor/ckeditor-classic.js true
./webpack/plugins/custom/ckeditor/ckeditor-document.js true
./webpack/plugins/custom/ckeditor/ckeditor-inline.js true
./webpack/plugins/custom/cookiealert/cookiealert.js true
./webpack/plugins/custom/cropper/cropper.js true
./webpack/plugins/custom/draggable/draggable.js true
./webpack/plugins/custom/flotcharts/flotcharts.js true
./webpack/plugins/custom/formrepeater/formrepeater.js true
./webpack/plugins/custom/fslightbox/fslightbox.js true
./webpack/plugins/custom/jkanban/jkanban.js true
./webpack/plugins/custom/jstree/jstree.js true
./webpack/plugins/custom/leaflet/leaflet.js true
./webpack/plugins/custom/prismjs/prismjs.js true
./webpack/plugins/custom/tiny-slider/tiny-slider.js true
./webpack/plugins/custom/tinymce/tinymce.js true
./webpack/plugins/custom/typedjs/typedjs.js true
./webpack/plugins/custom/vis-timeline/vis-timeline.js true
../demo1/src/js/custom/account/api-keys/api-keys.js truems
../demo1/src/js/custom/account/orders/classic.js true
../demo1/src/js/custom/account/referrals/referral-program.js true
../demo1/src/js/custom/account/security/license-usage.js true
../demo1/src/js/custom/account/security/security-summary.js true
../demo1/src/js/custom/account/settings/deactivate-account.js true
../demo1/src/js/custom/account/settings/overview.js true
../demo1/src/js/custom/account/settings/profile-details.js true
../demo1/src/js/custom/account/settings/signin-methods.js true
../demo1/src/js/custom/apps/calendar/calendar.js true
../demo1/src/js/custom/apps/chat/chat.js true
../demo1/src/js/custom/apps/contacts/edit-contact.js true
../demo1/src/js/custom/apps/contacts/view-contact.js true
../demo1/src/js/custom/apps/customers/add.js true
../demo1/src/js/custom/apps/customers/list/export.js true
../demo1/src/js/custom/apps/customers/list/list.js true
../demo1/src/js/custom/apps/customers/update.js true
../demo1/src/js/custom/apps/customers/view/add-payment.js true
../demo1/src/js/custom/apps/customers/view/adjust-balance.js true
../demo1/src/js/custom/apps/customers/view/invoices.js true
../demo1/src/js/custom/apps/customers/view/payment-method.js true
../demo1/src/js/custom/apps/customers/view/payment-table.js true
../demo1/src/js/custom/apps/customers/view/statement.js true
../demo1/src/js/custom/apps/ecommerce/catalog/categories.js true
../demo1/src/js/custom/apps/ecommerce/catalog/products.js true
../demo1/src/js/custom/apps/ecommerce/catalog/save-category.js true
../demo1/src/js/custom/apps/ecommerce/catalog/save-product.js true
../demo1/src/js/custom/apps/ecommerce/customers/details/add-address.js true
../demo1/src/js/custom/apps/ecommerce/customers/details/add-auth-app.js true
../demo1/src/js/custom/apps/ecommerce/customers/details/add-one-time-password.js true
../demo1/src/js/custom/apps/ecommerce/customers/details/payment-method.js true
../demo1/src/js/custom/apps/ecommerce/customers/details/transaction-history.js true
../demo1/src/js/custom/apps/ecommerce/customers/details/update-address.js true
../demo1/src/js/custom/apps/ecommerce/customers/details/update-password.js true
../demo1/src/js/custom/apps/ecommerce/customers/details/update-phone.js true
../demo1/src/js/custom/apps/ecommerce/customers/details/update-profile.js true
../demo1/src/js/custom/apps/ecommerce/customers/listing/add.js true
../demo1/src/js/custom/apps/ecommerce/customers/listing/export.js true
../demo1/src/js/custom/apps/ecommerce/customers/listing/listing.js true
../demo1/src/js/custom/apps/ecommerce/reports/customer-orders/customer-orders.js true
../demo1/src/js/custom/apps/ecommerce/reports/returns/returns.js true
../demo1/src/js/custom/apps/ecommerce/reports/sales/sales.js true
../demo1/src/js/custom/apps/ecommerce/reports/shipping/shipping.js true
../demo1/src/js/custom/apps/ecommerce/reports/views/views.js true
../demo1/src/js/custom/apps/ecommerce/sales/listing.js true
../demo1/src/js/custom/apps/ecommerce/sales/save-order.js true
../demo1/src/js/custom/apps/ecommerce/settings/settings.js true
../demo1/src/js/custom/apps/file-manager/list.js true
../demo1/src/js/custom/apps/file-manager/settings.js true
../demo1/src/js/custom/apps/inbox/compose.js true
../demo1/src/js/custom/apps/inbox/listing.js true
../demo1/src/js/custom/apps/inbox/reply.js true
../demo1/src/js/custom/apps/invoices/create.js true
../demo1/src/js/custom/apps/projects/list/list.js true
../demo1/src/js/custom/apps/projects/project/project.js true
../demo1/src/js/custom/apps/projects/settings/settings.js true
../demo1/src/js/custom/apps/projects/targets/targets.js true
../demo1/src/js/custom/apps/projects/users/users.js true
../demo1/src/js/custom/apps/subscriptions/add/advanced.js true
../demo1/src/js/custom/apps/subscriptions/add/customer-select.js true
../demo1/src/js/custom/apps/subscriptions/add/products.js true
../demo1/src/js/custom/apps/subscriptions/list/export.js true
../demo1/src/js/custom/apps/subscriptions/list/list.js true
../demo1/src/js/custom/apps/support-center/tickets/create.js true
../demo1/src/js/custom/apps/user-management/permissions/add-permission.js true
../demo1/src/js/custom/apps/user-management/permissions/list.js true
../demo1/src/js/custom/apps/user-management/permissions/update-permission.js true
../demo1/src/js/custom/apps/user-management/roles/list/add.js true
../demo1/src/js/custom/apps/user-management/roles/list/update-role.js true
../demo1/src/js/custom/apps/user-management/roles/view/update-role.js true
../demo1/src/js/custom/apps/user-management/roles/view/view.js true
../demo1/src/js/custom/apps/user-management/users/list/add.js true
../demo1/src/js/custom/apps/user-management/users/list/export-users.js true
../demo1/src/js/custom/apps/user-management/users/list/table.js true
../demo1/src/js/custom/apps/user-management/users/view/add-auth-app.js true
../demo1/src/js/custom/apps/user-management/users/view/add-one-time-password.js true
../demo1/src/js/custom/apps/user-management/users/view/add-schedule.js true
../demo1/src/js/custom/apps/user-management/users/view/add-task.js true
../demo1/src/js/custom/apps/user-management/users/view/update-details.js true
../demo1/src/js/custom/apps/user-management/users/view/update-email.js true
../demo1/src/js/custom/apps/user-management/users/view/update-password.js true
../demo1/src/js/custom/apps/user-management/users/view/update-role.js true
../demo1/src/js/custom/apps/user-management/users/view/view.js true
../demo1/src/js/custom/authentication/password-reset/new-password.js true
../demo1/src/js/custom/authentication/password-reset/password-reset.js true
../demo1/src/js/custom/authentication/sign-in/general.js true
../demo1/src/js/custom/authentication/sign-in/two-steps.js true
../demo1/src/js/custom/authentication/sign-up/coming-soon.js true
../demo1/src/js/custom/authentication/sign-up/free-trial.js true
../demo1/src/js/custom/authentication/sign-up/general.js true
../demo1/src/js/custom/documentation/base/forms/advanced.js true
../demo1/src/js/custom/documentation/base/indicator.js true
../demo1/src/js/custom/documentation/base/modal.js true
../demo1/src/js/custom/documentation/base/rotate.js true
../demo1/src/js/custom/documentation/base/toasts.js true
../demo1/src/js/custom/documentation/charts/amcharts/charts.js true
../demo1/src/js/custom/documentation/charts/amcharts/maps.js true
../demo1/src/js/custom/documentation/charts/amcharts/stock-charts.js true
../demo1/src/js/custom/documentation/charts/apexcharts.js true
../demo1/src/js/custom/documentation/charts/chartjs.js true
../demo1/src/js/custom/documentation/charts/flotcharts/axis.js true
../demo1/src/js/custom/documentation/charts/flotcharts/bar.js true
../demo1/src/js/custom/documentation/charts/flotcharts/basic.js true
../demo1/src/js/custom/documentation/charts/flotcharts/dynamic.js true
../demo1/src/js/custom/documentation/charts/flotcharts/pie.js true
../demo1/src/js/custom/documentation/charts/flotcharts/stack.js true
../demo1/src/js/custom/documentation/charts/flotcharts/tracking.js true
../demo1/src/js/custom/documentation/charts/google-charts/column.js true
../demo1/src/js/custom/documentation/charts/google-charts/line.js true
../demo1/src/js/custom/documentation/charts/google-charts/pie.js true
../demo1/src/js/custom/documentation/documentation.js true
../demo1/src/js/custom/documentation/editors/ckeditor/balloon-block.js true
../demo1/src/js/custom/documentation/editors/ckeditor/balloon.js true
../demo1/src/js/custom/documentation/editors/ckeditor/classic.js true
../demo1/src/js/custom/documentation/editors/ckeditor/document.js true
../demo1/src/js/custom/documentation/editors/ckeditor/inline.js true
../demo1/src/js/custom/documentation/editors/quill/autosave.js true
../demo1/src/js/custom/documentation/editors/quill/basic.js true
../demo1/src/js/custom/documentation/editors/tinymce/basic.js true
../demo1/src/js/custom/documentation/editors/tinymce/hidden.js true
../demo1/src/js/custom/documentation/editors/tinymce/plugins.js true
../demo1/src/js/custom/documentation/forms/bootstrap-maxlength.js true
../demo1/src/js/custom/documentation/forms/clipboard.js true
../demo1/src/js/custom/documentation/forms/daterangepicker.js true
../demo1/src/js/custom/documentation/forms/dialer.js true
../demo1/src/js/custom/documentation/forms/dropzonejs.js true
../demo1/src/js/custom/documentation/forms/flatpickr.js true
../demo1/src/js/custom/documentation/forms/formrepeater/advanced.js true
../demo1/src/js/custom/documentation/forms/formrepeater/basic.js true
../demo1/src/js/custom/documentation/forms/formrepeater/nested.js true
../demo1/src/js/custom/documentation/forms/formvalidation/advanced.js true
../demo1/src/js/custom/documentation/forms/formvalidation/basic.js true
../demo1/src/js/custom/documentation/forms/image-input.js true
../demo1/src/js/custom/documentation/forms/inputmask.js true
../demo1/src/js/custom/documentation/forms/multiselectsplitter.js true
../demo1/src/js/custom/documentation/forms/nouislider.js true
../demo1/src/js/custom/documentation/forms/password-meter.js true
../demo1/src/js/custom/documentation/forms/recaptcha.js true
../demo1/src/js/custom/documentation/forms/select2.js true
../demo1/src/js/custom/documentation/forms/tagify.js true
../demo1/src/js/custom/documentation/general/blockui.js true
../demo1/src/js/custom/documentation/general/cropper.js true
../demo1/src/js/custom/documentation/general/datatables/advanced.js true
../demo1/src/js/custom/documentation/general/datatables/api.js true
../demo1/src/js/custom/documentation/general/datatables/basic.js true
../demo1/src/js/custom/documentation/general/datatables/buttons.js true
../demo1/src/js/custom/documentation/general/datatables/server-side.js true
../demo1/src/js/custom/documentation/general/datatables/subtable.js true
../demo1/src/js/custom/documentation/general/draggable/cards.js true
../demo1/src/js/custom/documentation/general/draggable/multiple-containers.js true
../demo1/src/js/custom/documentation/general/draggable/restricted.js true
../demo1/src/js/custom/documentation/general/draggable/swappable.js true
../demo1/src/js/custom/documentation/general/drawer.js true
../demo1/src/js/custom/documentation/general/fullcalendar/background-events.js true
../demo1/src/js/custom/documentation/general/fullcalendar/basic.js true
../demo1/src/js/custom/documentation/general/fullcalendar/drag-n-drop.js true
../demo1/src/js/custom/documentation/general/fullcalendar/locales.js true
../demo1/src/js/custom/documentation/general/fullcalendar/selectable-dates.js true
../demo1/src/js/custom/documentation/general/fullcalendar/timezone.js true
../demo1/src/js/custom/documentation/general/jkanban/basic.js true
../demo1/src/js/custom/documentation/general/jkanban/color.js true
../demo1/src/js/custom/documentation/general/jkanban/fixed-height.js true
../demo1/src/js/custom/documentation/general/jkanban/restricted.js true
../demo1/src/js/custom/documentation/general/jkanban/rich.js true
../demo1/src/js/custom/documentation/general/jstree/ajax.js true
../demo1/src/js/custom/documentation/general/jstree/basic.js true
../demo1/src/js/custom/documentation/general/jstree/checkable.js true
../demo1/src/js/custom/documentation/general/jstree/contextual.js true
../demo1/src/js/custom/documentation/general/jstree/customicons.js true
../demo1/src/js/custom/documentation/general/jstree/dragdrop.js true
../demo1/src/js/custom/documentation/general/scroll.js true
../demo1/src/js/custom/documentation/general/search/basic.js true
../demo1/src/js/custom/documentation/general/search/menu.js true
../demo1/src/js/custom/documentation/general/search/responsive.js true
../demo1/src/js/custom/documentation/general/stepper.js true
../demo1/src/js/custom/documentation/general/sweetalert.js true
../demo1/src/js/custom/documentation/general/toastr.js true
../demo1/src/js/custom/documentation/general/typed.js true
../demo1/src/js/custom/documentation/general/vis-timeline/basic.js true
../demo1/src/js/custom/documentation/general/vis-timeline/group.js true
../demo1/src/js/custom/documentation/general/vis-timeline/interaction.js true
../demo1/src/js/custom/documentation/general/vis-timeline/style.js true
../demo1/src/js/custom/documentation/general/vis-timeline/template.js true
../demo1/src/js/custom/documentation/search.js true
../demo1/src/js/custom/intro.js true
../demo1/src/js/custom/landing.js true
../demo1/src/js/custom/layout-builder/layout-builder.js true
../demo1/src/js/custom/pages/careers/apply.js true
../demo1/src/js/custom/pages/general/contact.js true
../demo1/src/js/custom/pages/pricing/general.js true
../demo1/src/js/custom/pages/social/feeds.js true
../demo1/src/js/custom/pages/user-profile/followers.js true
../demo1/src/js/custom/utilities/modals/bidding.js true
../demo1/src/js/custom/utilities/modals/create-account.js true
../demo1/src/js/custom/utilities/modals/create-api-key.js true
../demo1/src/js/custom/utilities/modals/create-app.js true
../demo1/src/js/custom/utilities/modals/create-campaign.js true
../demo1/src/js/custom/utilities/modals/create-project.js true
../demo1/src/js/custom/utilities/modals/create-project/budget.js true
../demo1/src/js/custom/utilities/modals/create-project/complete.js true
../demo1/src/js/custom/utilities/modals/create-project/files.js true
../demo1/src/js/custom/utilities/modals/create-project/main.js true
../demo1/src/js/custom/utilities/modals/create-project/settings.js true
../demo1/src/js/custom/utilities/modals/create-project/targets.js true
../demo1/src/js/custom/utilities/modals/create-project/team.js true
../demo1/src/js/custom/utilities/modals/create-project/type.js true
../demo1/src/js/custom/utilities/modals/new-address.js true
../demo1/src/js/custom/utilities/modals/new-card.js true
../demo1/src/js/custom/utilities/modals/new-target.js true
../demo1/src/js/custom/utilities/modals/offer-a-deal/complete.js true
../demo1/src/js/custom/utilities/modals/offer-a-deal/details.js true
../demo1/src/js/custom/utilities/modals/offer-a-deal/finance.js true
../demo1/src/js/custom/utilities/modals/offer-a-deal/main.js true
../demo1/src/js/custom/utilities/modals/offer-a-deal/type.js true
../demo1/src/js/custom/utilities/modals/select-location.js true
../demo1/src/js/custom/utilities/modals/share-earn.js true
../demo1/src/js/custom/utilities/modals/top-up-wallet.js true
../demo1/src/js/custom/utilities/modals/two-factor-authentication.js true
../demo1/src/js/custom/utilities/modals/upgrade-plan.js true
../demo1/src/js/custom/utilities/modals/users-search.js true
../demo1/src/js/custom/utilities/search/horizontal.js true
../demo1/src/js/custom/widgets.js true
../demo1/src/js/widgets/cards/widget-1.js true
../demo1/src/js/widgets/cards/widget-10.js true
../demo1/src/js/widgets/cards/widget-12.js true
../demo1/src/js/widgets/cards/widget-13.js true
../demo1/src/js/widgets/cards/widget-17.js true
../demo1/src/js/widgets/cards/widget-4.js true
../demo1/src/js/widgets/cards/widget-6.js true
../demo1/src/js/widgets/cards/widget-8.js true
../demo1/src/js/widgets/cards/widget-9.js true
../demo1/src/js/widgets/charts/widget-1.js true
../demo1/src/js/widgets/charts/widget-10.js true
../demo1/src/js/widgets/charts/widget-11.js true
../demo1/src/js/widgets/charts/widget-12.js true
../demo1/src/js/widgets/charts/widget-13.js true
../demo1/src/js/widgets/charts/widget-14.js trueed in 81ms
../demo1/src/js/widgets/charts/widget-15.js true
../demo1/src/js/widgets/charts/widget-16.js true
../demo1/src/js/widgets/charts/widget-17.js true
../demo1/src/js/widgets/charts/widget-18.js true
../demo1/src/js/widgets/charts/widget-19.js true
../demo1/src/js/widgets/charts/widget-2.js true
../demo1/src/js/widgets/charts/widget-20.js true
../demo1/src/js/widgets/charts/widget-21.js true
../demo1/src/js/widgets/charts/widget-22.js true
../demo1/src/js/widgets/charts/widget-23.js true
../demo1/src/js/widgets/charts/widget-24.js true
../demo1/src/js/widgets/charts/widget-25.js true
../demo1/src/js/widgets/charts/widget-26.js true
../demo1/src/js/widgets/charts/widget-27.js true
../demo1/src/js/widgets/charts/widget-28.js true
../demo1/src/js/widgets/charts/widget-29.js true
../demo1/src/js/widgets/charts/widget-3.js true
../demo1/src/js/widgets/charts/widget-30.js true
../demo1/src/js/widgets/charts/widget-31.js true
../demo1/src/js/widgets/charts/widget-32.js trueed in 81ms
../demo1/src/js/widgets/charts/widget-33.js true
../demo1/src/js/widgets/charts/widget-34.js true
../demo1/src/js/widgets/charts/widget-35.js true
../demo1/src/js/widgets/charts/widget-4.js true
../demo1/src/js/widgets/charts/widget-5.js true
../demo1/src/js/widgets/charts/widget-6.js true
../demo1/src/js/widgets/charts/widget-7.js true
../demo1/src/js/widgets/charts/widget-8.js true
../demo1/src/js/widgets/charts/widget-9.js true
../demo1/src/js/widgets/forms/widget-1.js true
../demo1/src/js/widgets/lists/widget-24.js true
../demo1/src/js/widgets/maps/widget-1.js true
../demo1/src/js/widgets/players/widget-1.js true
../demo1/src/js/widgets/players/widget-2.js true
../demo1/src/js/widgets/sliders/widget-1.js true
../demo1/src/js/widgets/sliders/widget-3.js true
../demo1/src/js/widgets/tables/widget-14.js true
../demo1/src/js/widgets/tables/widget-3.js true
../demo1/src/js/widgets/tables/widget-4.js true
../demo1/src/js/widgets/tables/widget-5.js true
../demo1/src/js/widgets/timeline/widget-1.js true
../demo1/src/js/widgets/timeline/widget-2.js true
../demo1/src/js/widgets/timeline/widget-4.js true
entries {
'plugins/global/plugins.bundle': [ './webpack/plugins/plugins.js', './webpack/plugins/plugins.scss' ],
'css/style.bundle': [
'./../demo1/src/sass/style.scss',
'./../demo1/src/sass/plugins.scss'
],
'js/scripts.bundle': './webpack/scripts.demo1.js',
'plugins/custom/ckeditor/ckeditor-balloon-block.bundle': './webpack/plugins/custom/ckeditor/ckeditor-balloon-block.js',
'plugins/custom/ckeditor/ckeditor-balloon.bundle': './webpack/plugins/custom/ckeditor/ckeditor-balloon.js',
'plugins/custom/ckeditor/ckeditor-classic.bundle': './webpack/plugins/custom/ckeditor/ckeditor-classic.js',
'plugins/custom/ckeditor/ckeditor-document.bundle': './webpack/plugins/custom/ckeditor/ckeditor-document.js',
'plugins/custom/ckeditor/ckeditor-inline.bundle': './webpack/plugins/custom/ckeditor/ckeditor-inline.js',
'plugins/custom/cookiealert/cookiealert.bundle': './webpack/plugins/custom/cookiealert/cookiealert.js',
'plugins/custom/cropper/cropper.bundle': './webpack/plugins/custom/cropper/cropper.js',
'plugins/custom/draggable/draggable.bundle': './webpack/plugins/custom/draggable/draggable.js',
'plugins/custom/flotcharts/flotcharts.bundle': './webpack/plugins/custom/flotcharts/flotcharts.js',
'plugins/custom/formrepeater/formrepeater.bundle': './webpack/plugins/custom/formrepeater/formrepeater.js',
'plugins/custom/fslightbox/fslightbox.bundle': './webpack/plugins/custom/fslightbox/fslightbox.js',
'plugins/custom/jkanban/jkanban.bundle': './webpack/plugins/custom/jkanban/jkanban.js',
'plugins/custom/jstree/jstree.bundle': './webpack/plugins/custom/jstree/jstree.js',
'plugins/custom/leaflet/leaflet.bundle': './webpack/plugins/custom/leaflet/leaflet.js',
'plugins/custom/prismjs/prismjs.bundle': './webpack/plugins/custom/prismjs/prismjs.js',
'plugins/custom/tiny-slider/tiny-slider.bundle': './webpack/plugins/custom/tiny-slider/tiny-slider.js',
'plugins/custom/tinymce/tinymce.bundle': './webpack/plugins/custom/tinymce/tinymce.js',
'plugins/custom/typedjs/typedjs.bundle': './webpack/plugins/custom/typedjs/typedjs.js',
'plugins/custom/vis-timeline/vis-timeline.bundle': './webpack/plugins/custom/vis-timeline/vis-timeline.js',
'js/custom/account/api-keys/api-keys': './../demo1/src/js/custom/account/api-keys/api-keys.js',
'js/custom/account/orders/classic': './../demo1/src/js/custom/account/orders/classic.js',
'js/custom/account/referrals/referral-program': './../demo1/src/js/custom/account/referrals/referral-program.js',
'js/custom/account/security/license-usage': './../demo1/src/js/custom/account/security/license-usage.js',
'js/custom/account/security/security-summary': './../demo1/src/js/custom/account/security/security-summary.js',
'js/custom/account/settings/deactivate-account': './../demo1/src/js/custom/account/settings/deactivate-account.js',
'js/custom/account/settings/overview': './../demo1/src/js/custom/account/settings/overview.js',
'js/custom/account/settings/profile-details': './../demo1/src/js/custom/account/settings/profile-details.js',
'js/custom/account/settings/signin-methods': './../demo1/src/js/custom/account/settings/signin-methods.js',
'js/custom/apps/calendar/calendar': './../demo1/src/js/custom/apps/calendar/calendar.js',
'js/custom/apps/chat/chat': './../demo1/src/js/custom/apps/chat/chat.js',
'js/custom/apps/contacts/edit-contact': './../demo1/src/js/custom/apps/contacts/edit-contact.js',
'js/custom/apps/contacts/view-contact': './../demo1/src/js/custom/apps/contacts/view-contact.js',
'js/custom/apps/customers/add': './../demo1/src/js/custom/apps/customers/add.js',
'js/custom/apps/customers/list/export': './../demo1/src/js/custom/apps/customers/list/export.js',
'js/custom/apps/customers/list/list': './../demo1/src/js/custom/apps/customers/list/list.js',
'js/custom/apps/customers/update': './../demo1/src/js/custom/apps/customers/update.js',
'js/custom/apps/customers/view/add-payment': './../demo1/src/js/custom/apps/customers/view/add-payment.js',
'js/custom/apps/customers/view/adjust-balance': './../demo1/src/js/custom/apps/customers/view/adjust-balance.js',
'js/custom/apps/customers/view/invoices': './../demo1/src/js/custom/apps/customers/view/invoices.js',
'js/custom/apps/customers/view/payment-method': './../demo1/src/js/custom/apps/customers/view/payment-method.js',
'js/custom/apps/customers/view/payment-table': './../demo1/src/js/custom/apps/customers/view/payment-table.js',
'js/custom/apps/customers/view/statement': './../demo1/src/js/custom/apps/customers/view/statement.js',
'js/custom/apps/ecommerce/catalog/categories': './../demo1/src/js/custom/apps/ecommerce/catalog/categories.js',
'js/custom/apps/ecommerce/catalog/products': './../demo1/src/js/custom/apps/ecommerce/catalog/products.js',
'js/custom/apps/ecommerce/catalog/save-category': './../demo1/src/js/custom/apps/ecommerce/catalog/save-category.js',
'js/custom/apps/ecommerce/catalog/save-product': './../demo1/src/js/custom/apps/ecommerce/catalog/save-product.js',
'js/custom/apps/ecommerce/customers/details/add-address': './../demo1/src/js/custom/apps/ecommerce/customers/details/add-address.js',
'js/custom/apps/ecommerce/customers/details/add-auth-app': './../demo1/src/js/custom/apps/ecommerce/customers/details/add-auth-app.js',
'js/custom/apps/ecommerce/customers/details/add-one-time-password': './../demo1/src/js/custom/apps/ecommerce/customers/details/add-one-time-password.js',
'js/custom/apps/ecommerce/customers/details/payment-method': './../demo1/src/js/custom/apps/ecommerce/customers/details/payment-method.js',
'js/custom/apps/ecommerce/customers/details/transaction-history': './../demo1/src/js/custom/apps/ecommerce/customers/details/transaction-history.js',
'js/custom/apps/ecommerce/customers/details/update-address': './../demo1/src/js/custom/apps/ecommerce/customers/details/update-address.js',
'js/custom/apps/ecommerce/customers/details/update-password': './../demo1/src/js/custom/apps/ecommerce/customers/details/update-password.js',
'js/custom/apps/ecommerce/customers/details/update-phone': './../demo1/src/js/custom/apps/ecommerce/customers/details/update-phone.js',
'js/custom/apps/ecommerce/customers/details/update-profile': './../demo1/src/js/custom/apps/ecommerce/customers/details/update-profile.js',
'js/custom/apps/ecommerce/customers/listing/add': './../demo1/src/js/custom/apps/ecommerce/customers/listing/add.js',
'js/custom/apps/ecommerce/customers/listing/export': './../demo1/src/js/custom/apps/ecommerce/customers/listing/export.js',
'js/custom/apps/ecommerce/customers/listing/listing': './../demo1/src/js/custom/apps/ecommerce/customers/listing/listing.js',
'js/custom/apps/ecommerce/reports/customer-orders/customer-orders': './../demo1/src/js/custom/apps/ecommerce/reports/customer-orders/customer-orders.js',
/js/custom/apps/ecommerce/reports/returns/returns.js','./../demo1/src[..................] - : timing npm:load Completed in 81ms
'js/custom/apps/ecommerce/reports/sales/sales': './../demo1/src/js/custom/apps/ecommerce/reports/sales/sales.js',
'js/custom/apps/ecommerce/reports/shipping/shipping': './../demo1/src/js/custom/apps/ecommerce/reports/shipping/shipping.js',
'js/custom/apps/ecommerce/reports/views/views': './../demo1/src/js/custom/apps/ecommerce/reports/views/views.js',
'js/custom/apps/ecommerce/sales/listing': './../demo1/src/js/custom/apps/ecommerce/sales/listing.js',
'js/custom/apps/ecommerce/sales/save-order': './../demo1/src/js/custom/apps/ecommerce/sales/save-order.js',
'js/custom/apps/ecommerce/settings/settings': './../demo1/src/js/custom/apps/ecommerce/settings/settings.js',
'js/custom/apps/file-manager/list': './../demo1/src/js/custom/apps/file-manager/list.js',
'js/custom/apps/file-manager/settings': './../demo1/src/js/custom/apps/file-manager/settings.js',
'js/custom/apps/inbox/compose': './../demo1/src/js/custom/apps/inbox/compose.js',
'js/custom/apps/inbox/listing': './../demo1/src/js/custom/apps/inbox/listing.js',
'js/custom/apps/inbox/reply': './../demo1/src/js/custom/apps/inbox/reply.js',
'js/custom/apps/invoices/create': './../demo1/src/js/custom/apps/invoices/create.js',
'js/custom/apps/projects/list/list': './../demo1/src/js/custom/apps/projects/list/list.js',
'js/custom/apps/projects/project/project': './../demo1/src/js/custom/apps/projects/project/project.js',
'js/custom/apps/projects/settings/settings': './../demo1/src/js/custom/apps/projects/settings/settings.js',
'js/custom/apps/projects/targets/targets': './../demo1/src/js/custom/apps/projects/targets/targets.js',
'js/custom/apps/projects/users/users': './../demo1/src/js/custom/apps/projects/users/users.js',
'js/custom/apps/subscriptions/add/advanced': './../demo1/src/js/custom/apps/subscriptions/add/advanced.js',
'js/custom/apps/subscriptions/add/customer-select': './../demo1/src/js/custom/apps/subscriptions/add/customer-select.js',
'js/custom/apps/subscriptions/add/products': './../demo1/src/js/custom/apps/subscriptions/add/products.js',
'js/custom/apps/subscriptions/list/export': './../demo1/src/js/custom/apps/subscriptions/list/export.js',
'js/custom/apps/subscriptions/list/list': './../demo1/src/js/custom/apps/subscriptions/list/list.js',
'js/custom/apps/support-center/tickets/create': './../demo1/src/js/custom/apps/support-center/tickets/create.js',
'js/custom/apps/user-management/permissions/add-permission': './../demo1/src/js/custom/apps/user-management/permissions/add-permission.js',
'js/custom/apps/user-management/permissions/list': './../demo1/src/js/custom/apps/user-management/permissions/list.js',
'js/custom/apps/user-management/permissions/update-permission': './../demo1/src/js/custom/apps/user-management/permissions/update-permission.js',
'js/custom/apps/user-management/roles/list/add': './../demo1/src/js/custom/apps/user-management/roles/list/add.js',
'js/custom/apps/user-management/roles/list/update-role': './../demo1/src/js/custom/apps/user-management/roles/list/update-role.js',
'js/custom/apps/user-management/roles/view/update-role': './../demo1/src/js/custom/apps/user-management/roles/view/update-role.js',
'js/custom/apps/user-management/roles/view/view': './../demo1/src/js/custom/apps/user-management/roles/view/view.js',
'js/custom/apps/user-management/users/list/add': './../demo1/src/js/custom/apps/user-management/users/list/add.js',
'js/custom/apps/user-management/users/list/export-users': './../demo1/src/js/custom/apps/user-management/users/list/export-users.js',
'js/custom/apps/user-management/users/list/table': './../demo1/src/js/custom/apps/user-management/users/list/table.js',
'js/custom/apps/user-management/users/view/add-auth-app': './../demo1/src/js/custom/apps/user-management/users/view/add-auth-app.js',
'js/custom/apps/user-management/users/view/add-one-time-password': './../demo1/src/js/custom/apps/user-management/users/view/add-one-time-password.js',
'js/custom/apps/user-management/users/view/add-schedule': './../demo1/src/js/custom/apps/user-management/users/view/add-schedule.js',
'js/custom/apps/user-management/users/view/add-task': './../demo1/src/js/custom/apps/user-management/users/view/add-task.js',
'js/custom/apps/user-management/users/view/update-details': './../demo1/src/js/custom/apps/user-management/users/view/update-details.js',
'js/custom/apps/user-management/users/view/update-email': './../demo1/src/js/custom/apps/user-management/users/view/update-email.js',
'js/custom/apps/user-management/users/view/update-password': './../demo1/src/js/custom/apps/user-management/users/view/update-password.js',
'js/custom/apps/user-management/users/view/update-role': './../demo1/src/js/custom/apps/user-management/users/view/update-role.js',
'js/custom/apps/user-management/users/view/view': './../demo1/src/js/custom/apps/user-management/users/view/view.js',
'js/custom/authentication/password-reset/new-password': './../demo1/src/js/custom/authentication/password-reset/new-password.js',
'js/custom/authentication/password-reset/password-reset': './../demo1/src/js/custom/authentication/password-reset/password-reset.js',
'js/custom/authentication/sign-in/general': './../demo1/src/js/custom/authentication/sign-in/general.js',
'js/custom/authentication/sign-in/two-steps': './../demo1/src/js/custom/authentication/sign-in/two-steps.js',
'js/custom/authentication/sign-up/coming-soon': './../demo1/src/js/custom/authentication/sign-up/coming-soon.js',
'js/custom/authentication/sign-up/free-trial': './../demo1/src/js/custom/authentication/sign-up/free-trial.js',
'js/custom/authentication/sign-up/general': './../demo1/src/js/custom/authentication/sign-up/general.js',
'js/custom/documentation/base/forms/advanced': './../demo1/src/js/custom/documentation/base/forms/advanced.js',
'js/custom/documentation/base/indicator': './../demo1/src/js/custom/documentation/base/indicator.js',
'js/custom/documentation/base/modal': './../demo1/src/js/custom/documentation/base/modal.js',
'js/custom/documentation/base/rotate': './../demo1/src/js/custom/documentation/base/rotate.js',
'js/custom/documentation/base/toasts': './../demo1/src/js/custom/documentation/base/toasts.js',
'js/custom/documentation/charts/amcharts/charts': './../demo1/src/js/custom/documentation/charts/amcharts/charts.js',
'js/custom/documentation/charts/amcharts/maps': './../demo1/src/js/custom/documentation/charts/amcharts/maps.js',
'js/custom/documentation/charts/amcharts/stock-charts': './../demo1/src/js/custom/documentation/charts/amcharts/stock-charts.js',
'js/custom/documentation/charts/apexcharts': './../demo1/src/js/custom/documentation/charts/apexcharts.js',
'js/custom/documentation/charts/chartjs': './../demo1/src/js/custom/documentation/charts/chartjs.js',
'js/custom/documentation/charts/flotcharts/axis': './../demo1/src/js/custom/documentation/charts/flotcharts/axis.js',
'js/custom/documentation/charts/flotcharts/bar': './../demo1/src/js/custom/documentation/charts/flotcharts/bar.js',
'js/custom/documentation/charts/flotcharts/basic': './../demo1/src/js/custom/documentation/charts/flotcharts/basic.js',
'js/custom/documentation/charts/flotcharts/dynamic': './../demo1/src/js/custom/documentation/charts/flotcharts/dynamic.js',
'js/custom/documentation/charts/flotcharts/pie': './../demo1/src/js/custom/documentation/charts/flotcharts/pie.js',
'js/custom/documentation/charts/flotcharts/stack': './../demo1/src/js/custom/documentation/charts/flotcharts/stack.js',
'js/custom/documentation/charts/flotcharts/tracking': './../demo1/src/js/custom/documentation/charts/flotcharts/tracking.js',
'js/custom/documentation/charts/google-charts/column': './../demo1/src/js/custom/documentation/charts/google-charts/column.js',
'js/custom/documentation/charts/google-charts/line': './../demo1/src/js/custom/documentation/charts/google-charts/line.js',
'js/custom/documentation/charts/google-charts/pie': './../demo1/src/js/custom/documentation/charts/google-charts/pie.js',
'js/custom/documentation/documentation': './../demo1/src/js/custom/documentation/documentation.js',
'js/custom/documentation/editors/ckeditor/balloon-block': './../demo1/src/js/custom/documentation/editors/ckeditor/balloon-block.js',
'js/custom/documentation/editors/ckeditor/balloon': './../demo1/src/js/custom/documentation/editors/ckeditor/balloon.js',
'js/custom/documentation/editors/ckeditor/classic': './../demo1/src/js/custom/documentation/editors/ckeditor/classic.js',
'js/custom/documentation/editors/ckeditor/document': './../demo1/src/js/custom/documentation/editors/ckeditor/document.js',
'js/custom/documentation/editors/ckeditor/inline': './../demo1/src/js/custom/documentation/editors/ckeditor/inline.js',
'js/custom/documentation/editors/quill/autosave': './../demo1/src/js/custom/documentation/editors/quill/autosave.js',
'js/custom/documentation/editors/quill/basic': './../demo1/src/js/custom/documentation/editors/quill/basic.js',
'js/custom/documentation/editors/tinymce/basic': './../demo1/src/js/custom/documentation/editors/tinymce/basic.js',
'js/custom/documentation/editors/tinymce/hidden': './../demo1/src/js/custom/documentation/editors/tinymce/hidden.js',
'js/custom/documentation/editors/tinymce/plugins': './../demo1/src/js/custom/documentation/editors/tinymce/plugins.js',
'js/custom/documentation/forms/bootstrap-maxlength': './../demo1/src/js/custom/documentation/forms/bootstrap-maxlength.js',
'js/custom/documentation/forms/clipboard': './../demo1/src/js/custom/documentation/forms/clipboard.js',
'js/custom/documentation/forms/daterangepicker': './../demo1/src/js/custom/documentation/forms/daterangepicker.js',
'js/custom/documentation/forms/dialer': './../demo1/src/js/custom/documentation/forms/dialer.js',
'js/custom/documentation/forms/dropzonejs': './../demo1/src/js/custom/documentation/forms/dropzonejs.js',
'js/custom/documentation/forms/flatpickr': './../demo1/src/js/custom/documentation/forms/flatpickr.js',
'js/custom/documentation/forms/formrepeater/advanced': './../demo1/src/js/custom/documentation/forms/formrepeater/advanced.js',
'js/custom/documentation/forms/formrepeater/basic': './../demo1/src/js/custom/documentation/forms/formrepeater/basic.js',
'js/custom/documentation/forms/formrepeater/nested': './../demo1/src/js/custom/documentation/forms/formrepeater/nested.js',
'js/custom/documentation/forms/formvalidation/advanced': './../demo1/src/js/custom/documentation/forms/formvalidation/advanced.js',
'js/custom/documentation/forms/formvalidation/basic': './../demo1/src/js/custom/documentation/forms/formvalidation/basic.js',
'js/custom/documentation/forms/image-input': './../demo1/src/js/custom/documentation/forms/image-input.js',
'js/custom/documentation/forms/inputmask': './../demo1/src/js/custom/documentation/forms/inputmask.js',
'js/custom/documentation/forms/multiselectsplitter': './../demo1/src/js/custom/documentation/forms/multiselectsplitter.js',
'js/custom/documentation/forms/nouislider': './../demo1/src/js/custom/documentation/forms/nouislider.js',
'js/custom/documentation/forms/password-meter': './../demo1/src/js/custom/documentation/forms/password-meter.js',
'js/custom/documentation/forms/recaptcha': './../demo1/src/js/custom/documentation/forms/recaptcha.js',
'js/custom/documentation/forms/select2': './../demo1/src/js/custom/documentation/forms/select2.js',
'js/custom/documentation/forms/tagify': './../demo1/src/js/custom/documentation/forms/tagify.js',
'js/custom/documentation/general/blockui': './../demo1/src/js/custom/documentation/general/blockui.js',
'js/custom/documentation/general/cropper': './../demo1/src/js/custom/documentation/general/cropper.js',
'js/custom/documentation/general/datatables/advanced': './../demo1/src/js/custom/documentation/general/datatables/advanced.js',
'js/custom/documentation/general/datatables/api': './../demo1/src/js/custom/documentation/general/datatables/api.js',
'js/custom/documentation/general/datatables/basic': './../demo1/src/js/custom/documentation/general/datatables/basic.js',
'js/custom/documentation/general/datatables/buttons': './../demo1/src/js/custom/documentation/general/datatables/buttons.js',
'js/custom/documentation/general/datatables/server-side': './../demo1/src/js/custom/documentation/general/datatables/server-side.js',
'js/custom/documentation/general/datatables/subtable': './../demo1/src/js/custom/documentation/general/datatables/subtable.js',
'js/custom/documentation/general/draggable/cards': './../demo1/src/js/custom/documentation/general/draggable/cards.js',
'js/custom/documentation/general/draggable/multiple-containers': './../demo1/src/js/custom/documentation/general/draggable/multiple-containers.js',
'js/custom/documentation/general/draggable/restricted': './../demo1/src/js/custom/documentation/general/draggable/restricted.js',
'js/custom/documentation/general/draggable/swappable': './../demo1/src/js/custom/documentation/general/draggable/swappable.js',
'js/custom/documentation/general/drawer': './../demo1/src/js/custom/documentation/general/drawer.js',
'js/custom/documentation/general/fullcalendar/background-events': './../demo1/src/js/custom/documentation/general/fullcalendar/background-events.js',
'js/custom/documentation/general/fullcalendar/basic': './../demo1/src/js/custom/documentation/general/fullcalendar/basic.js',
'js/custom/documentation/general/fullcalendar/drag-n-drop': './../demo1/src/js/custom/documentation/general/fullcalendar/drag-n-drop.js',
'js/custom/documentation/general/fullcalendar/locales': './../demo1/src/js/custom/documentation/general/fullcalendar/locales.js',
'js/custom/documentation/general/fullcalendar/selectable-dates': './../demo1/src/js/custom/documentation/general/fullcalendar/selectable-dates.js',
'js/custom/documentation/general/fullcalendar/timezone': './../demo1/src/js/custom/documentation/general/fullcalendar/timezone.js',
'js/custom/documentation/general/jkanban/basic': './../demo1/src/js/custom/documentation/general/jkanban/basic.js',
'js/custom/documentation/general/jkanban/color': './../demo1/src/js/custom/documentation/general/jkanban/color.js',
'js/custom/documentation/general/jkanban/fixed-height': './../demo1/src/js/custom/documentation/general/jkanban/fixed-height.js',
'js/custom/documentation/general/jkanban/restricted': './../demo1/src/js/custom/documentation/general/jkanban/restricted.js',
'js/custom/documentation/general/jkanban/rich': './../demo1/src/js/custom/documentation/general/jkanban/rich.js',
'js/custom/documentation/general/jstree/ajax': './../demo1/src/js/custom/documentation/general/jstree/ajax.js',
'js/custom/documentation/general/jstree/basic': './../demo1/src/js/custom/documentation/general/jstree/basic.js',
'js/custom/documentation/general/jstree/checkable': './../demo1/src/js/custom/documentation/general/jstree/checkable.js',
'js/custom/documentation/general/jstree/contextual': './../demo1/src/js/custom/documentation/general/jstree/contextual.js',
'js/custom/documentation/general/jstree/customicons': './../demo1/src/js/custom/documentation/general/jstree/customicons.js',
'js/custom/documentation/general/jstree/dragdrop': './../demo1/src/js/custom/documentation/general/jstree/dragdrop.js',
'js/custom/documentation/general/scroll': './../demo1/src/js/custom/documentation/general/scroll.js',
'js/custom/documentation/general/search/basic': './../demo1/src/js/custom/documentation/general/search/basic.js',
'js/custom/documentation/general/search/menu': './../demo1/src/js/custom/documentation/general/search/menu.js',
'js/custom/documentation/general/search/responsive': './../demo1/src/js/custom/documentation/general/search/responsive.js',
'js/custom/documentation/general/stepper': './../demo1/src/js/custom/documentation/general/stepper.js',
'js/custom/documentation/general/sweetalert': './../demo1/src/js/custom/documentation/general/sweetalert.js',
'js/custom/documentation/general/toastr': './../demo1/src/js/custom/documentation/general/toastr.js',
'js/custom/documentation/general/typed': './../demo1/src/js/custom/documentation/general/typed.js',
'js/custom/documentation/general/vis-timeline/basic': './../demo1/src/js/custom/documentation/general/vis-timeline/basic.js',
'js/custom/documentation/general/vis-timeline/group': './../demo1/src/js/custom/documentation/general/vis-timeline/group.js',
'js/custom/documentation/general/vis-timeline/interaction': './../demo1/src/js/custom/documentation/general/vis-timeline/interaction.js',
'js/custom/documentation/general/vis-timeline/style': './../demo1/src/js/custom/documentation/general/vis-timeline/style.js',
'js/custom/documentation/general/vis-timeline/template': './../demo1/src/js/custom/documentation/general/vis-timeline/template.js',
'js/custom/documentation/search': './../demo1/src/js/custom/documentation/search.js',
'js/custom/intro': './../demo1/src/js/custom/intro.js',
'js/custom/landing': './../demo1/src/js/custom/landing.js',
'js/custom/layout-builder/layout-builder': './../demo1/src/js/custom/layout-builder/layout-builder.js',
'js/custom/pages/careers/apply': './../demo1/src/js/custom/pages/careers/apply.js',
'js/custom/pages/general/contact': './../demo1/src/js/custom/pages/general/contact.js',
'js/custom/pages/pricing/general': './../demo1/src/js/custom/pages/pricing/general.js',
'js/custom/pages/social/feeds': './../demo1/src/js/custom/pages/social/feeds.js',
'js/custom/pages/user-profile/followers': './../demo1/src/js/custom/pages/user-profile/followers.js',
'js/custom/utilities/modals/bidding': './../demo1/src/js/custom/utilities/modals/bidding.js',
'js/custom/utilities/modals/create-account': './../demo1/src/js/custom/utilities/modals/create-account.js',
'js/custom/utilities/modals/create-api-key': './../demo1/src/js/custom/utilities/modals/create-api-key.js',
'js/custom/utilities/modals/create-app': './../demo1/src/js/custom/utilities/modals/create-app.js',
'js/custom/utilities/modals/create-campaign': './../demo1/src/js/custom/utilities/modals/create-campaign.js',
'js/custom/utilities/modals/create-project': './../demo1/src/js/custom/utilities/modals/create-project.js',
'js/custom/utilities/modals/create-project/budget': './../demo1/src/js/custom/utilities/modals/create-project/budget.js',
'js/custom/utilities/modals/create-project/complete': './../demo1/src/js/custom/utilities/modals/create-project/complete.js',
'js/custom/utilities/modals/create-project/files': './../demo1/src/js/custom/utilities/modals/create-project/files.js',
'js/custom/utilities/modals/create-project/main': './../demo1/src/js/custom/utilities/modals/create-project/main.js',
'js/custom/utilities/modals/create-project/settings': './../demo1/src/js/custom/utilities/modals/create-project/settings.js',
'js/custom/utilities/modals/create-project/targets': './../demo1/src/js/custom/utilities/modals/create-project/targets.js',
'js/custom/utilities/modals/create-project/team': './../demo1/src/js/custom/utilities/modals/create-project/team.js',
'js/custom/utilities/modals/create-project/type': './../demo1/src/js/custom/utilities/modals/create-project/type.js',
'js/custom/utilities/modals/new-address': './../demo1/src/js/custom/utilities/modals/new-address.js',
'js/custom/utilities/modals/new-card': './../demo1/src/js/custom/utilities/modals/new-card.js',
'js/custom/utilities/modals/new-target': './../demo1/src/js/custom/utilities/modals/new-target.js',
'js/custom/utilities/modals/offer-a-deal/complete': './../demo1/src/js/custom/utilities/modals/offer-a-deal/complete.js',
'js/custom/utilities/modals/offer-a-deal/details': './../demo1/src/js/custom/utilities/modals/offer-a-deal/details.js',
'js/custom/utilities/modals/offer-a-deal/finance': './../demo1/src/js/custom/utilities/modals/offer-a-deal/finance.js',
'js/custom/utilities/modals/offer-a-deal/main': './../demo1/src/js/custom/utilities/modals/offer-a-deal/main.js',
'js/custom/utilities/modals/offer-a-deal/type': './../demo1/src/js/custom/utilities/modals/offer-a-deal/type.js',
'js/custom/utilities/modals/select-location': './../demo1/src/js/custom/utilities/modals/select-location.js',
'js/custom/utilities/modals/share-earn': './../demo1/src/js/custom/utilities/modals/share-earn.js',
'js/custom/utilities/modals/top-up-wallet': './../demo1/src/js/custom/utilities/modals/top-up-wallet.js',
'js/custom/utilities/modals/two-factor-authentication': './../demo1/src/js/custom/utilities/modals/two-factor-authentication.js',
'js/custom/utilities/modals/upgrade-plan': './../demo1/src/js/custom/utilities/modals/upgrade-plan.js',
'js/custom/utilities/modals/users-search': './../demo1/src/js/custom/utilities/modals/users-search.js',
'js/custom/utilities/search/horizontal': './../demo1/src/js/custom/utilities/search/horizontal.js',
'js/custom/widgets': './../demo1/src/js/custom/widgets.js',
'js/widgets.bundle': [
'../demo1/src/js/widgets/cards/widget-1.js',
'../demo1/src/js/widgets/cards/widget-10.js',
'../demo1/src/js/widgets/cards/widget-12.js',
'../demo1/src/js/widgets/cards/widget-13.js',
'../demo1/src/js/widgets/cards/widget-17.js',
'../demo1/src/js/widgets/cards/widget-4.js',
'../demo1/src/js/widgets/cards/widget-6.js',
'../demo1/src/js/widgets/cards/widget-8.js',
'../demo1/src/js/widgets/cards/widget-9.js',
'../demo1/src/js/widgets/charts/widget-1.js',
'../demo1/src/js/widgets/charts/widget-10.js',
'../demo1/src/js/widgets/charts/widget-11.js',
'../demo1/src/js/widgets/charts/widget-12.js',
'../demo1/src/js/widgets/charts/widget-13.js',
'../demo1/src/js/widgets/charts/widget-14.js',
'../demo1/src/js/widgets/charts/widget-15.js',
'../demo1/src/js/widgets/charts/widget-16.js',
'../demo1/src/js/widgets/charts/widget-17.js',
'../demo1/src/js/widgets/charts/widget-18.js',
'../demo1/src/js/widgets/charts/widget-19.js',
'../demo1/src/js/widgets/charts/widget-2.js',
'../demo1/src/js/widgets/charts/widget-20.js',
'../demo1/src/js/widgets/charts/widget-21.js',
'../demo1/src/js/widgets/charts/widget-22.js',
'../demo1/src/js/widgets/charts/widget-23.js',
'../demo1/src/js/widgets/charts/widget-24.js',
'../demo1/src/js/widgets/charts/widget-25.js',
'../demo1/src/js/widgets/charts/widget-26.js',
'../demo1/src/js/widgets/charts/widget-27.js',
'../demo1/src/js/widgets/charts/widget-28.js',
'../demo1/src/js/widgets/charts/widget-29.js',
'../demo1/src/js/widgets/charts/widget-3.js',
'../demo1/src/js/widgets/charts/widget-30.js',
'../demo1/src/js/widgets/charts/widget-31.js',
'../demo1/src/js/widgets/charts/widget-32.js',
'../demo1/src/js/widgets/charts/widget-33.js',
'../demo1/src/js/widgets/charts/widget-34.js',
'../demo1/src/js/widgets/charts/widget-35.js',
'../demo1/src/js/widgets/charts/widget-4.js',
'../demo1/src/js/widgets/charts/widget-5.js',
'../demo1/src/js/widgets/charts/widget-6.js',
'../demo1/src/js/widgets/charts/widget-7.js',
'../demo1/src/js/widgets/charts/widget-8.js',
'../demo1/src/js/widgets/charts/widget-9.js',
'../demo1/src/js/widgets/forms/widget-1.js',
'../demo1/src/js/widgets/lists/widget-24.js',
'../demo1/src/js/widgets/maps/widget-1.js',
'../demo1/src/js/widgets/players/widget-1.js',
'../demo1/src/js/widgets/players/widget-2.js',
'../demo1/src/js/widgets/sliders/widget-1.js',
'../demo1/src/js/widgets/sliders/widget-3.js',
'../demo1/src/js/widgets/tables/widget-14.js',
'../demo1/src/js/widgets/tables/widget-3.js',
'../demo1/src/js/widgets/tables/widget-4.js',
'../demo1/src/js/widgets/tables/widget-5.js',
'../demo1/src/js/widgets/timeline/widget-1.js',
'../demo1/src/js/widgets/timeline/widget-2.js',
'../demo1/src/js/widgets/timeline/widget-4.js'
]
}
>> Building metronic bundle...g npm:load Completed in 81ms
>> Completed metronic bundle in 30.484s! Completed in 81ms
webpack compiled successfullyng npm:load Completed in 81ms
npm timing command:run Completed in 33920ms
npm verb exit 0
npm timing npm Completed in 34024ms
npm info ok



Hi,

From the HTML version, could you please try to copy the folder from
metronic_v8.0.38/html/tools/webpack/ to the same folder as the webpack.config.js file?

Thanks



Hi,
I Have the same issue
Error: 'KTUtil' is undefined
Can you please advise how to fix this?


Text formatting options
Submit
Here's a how to add some HTML formatting to your comment:
  • <pre></pre> for JS codes block
  • <pre lang="html"></pre> for HTML code block
  • <pre lang="scss"></pre> for SCSS code block
  • <pre lang="php"></pre> for PHP code block
  • <code></code> for single line of code
  • <strong></strong> to make things bold
  • <em></em> to emphasize
  • <ul><li></li></ul>  to make list
  • <ol><li></li></ol>  to make ordered list
  • <h3></h3> to make headings
  • <a></a> for links
  • <img> to paste in an image
  • <blockquote></blockquote> to quote somebody
  • happy  :)
  • shocked  :|
  • sad  :(
Text formatting options
Submit
Here's a how to add some HTML formatting to your comment:
  • <pre></pre> for JS codes block
  • <pre lang="html"></pre> for HTML code block
  • <pre lang="scss"></pre> for SCSS code block
  • <pre lang="php"></pre> for PHP code block
  • <code></code> for single line of code
  • <strong></strong> to make things bold
  • <em></em> to emphasize
  • <ul><li></li></ul>  to make list
  • <ol><li></li></ol>  to make ordered list
  • <h3></h3> to make headings
  • <a></a> for links
  • <img> to paste in an image
  • <blockquote></blockquote> to quote somebody
  • happy  :)
  • shocked  :|
  • sad  :(