I
I
Ilya2017-02-23 16:15:50
gulp.js
Ilya, 2017-02-23 16:15:50

How to build a project with Gulp/Webpack directly on the server?

There is a Wappalyzer plugin in chrome, I noticed that some projects are built directly on the server via gulp or webpack, how to implement this?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
amokrushin, 2017-02-23
@amokrushin

This plugin cannot know where the project was built, on the local computer or not. As for the webpack, it leaves its mark, or rather the module loader in the final script, and therefore is detected.
Add script to any page

<script type="application/javascript">
    window.webpackJsonp = window.webpackJsonp || true;
</script>

and the Wappalyzer plugin will show the webpack icon for that page.
As for the assembly on the server, it really is the same as on the local computer.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question