How to create resource files with Wap4 v2

Status
Not open for further replies.

admin

Administrator
Staff member
With Wap4 v2, you won't be able to create resource files with file extensions. Instead, resource files are created as follows:
Code:
{extension}.{filename}
in which:
  • {extension}: a prefix of the file, acting as an extension
  • {filename}: name of the resource file

example:
Code:
css.style
js.jquery

For files that are not JavaScript or CSS, create the file with the usual format:
Code:
{filename}.{extension}
example:
Code:
detail.json
robots.txt
 
Status
Not open for further replies.
Back
Top