Created
May 13, 2021 07:28
-
-
Save shibayan/4a3aeb05ec1c9fd260cc5977883d6178 to your computer and use it in GitHub Desktop.
HttpPlatformHandler configuration for nuxt app
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<configuration> | |
<system.webServer> | |
<handlers> | |
<add name="httpPlatformHandler" path="*" verb="*" modules="httpPlatformHandler" resourceType="Unspecified" /> | |
</handlers> | |
<httpPlatform processPath="node" arguments="./node_modules/nuxt/bin/nuxt.js start"> | |
<environmentVariables> | |
<environmentVariable name="PORT" value="%HTTP_PLATFORM_PORT%" /> | |
</environmentVariables> | |
</httpPlatform> | |
</system.webServer> | |
</configuration> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment