1

I'm just trying to run ngtoast, I recently came across, but it gives me an error

no such file or directory 'c:\modules'

I'm trying to run ngtoast like this:

 ngtoast build

what am I doing wrong? Here is my config file:

{ 
    "public": "./public", 
    "modules": "/modules", 
    "output": "./public/modules.js" 
}
karaxuna
  • 26,752
  • 13
  • 82
  • 117
Ucha19871
  • 126
  • 2
  • 8

1 Answers1

1

You have mistake in configuration file. modules parameter is RELATIVE url from public folder (see documentation). So it must be "modules": "./modules" instead of "modules": "/modules"

karaxuna
  • 26,752
  • 13
  • 82
  • 117