Skip to content

Commit f9c7312

Browse files
committed
- deployment
1 parent 06061ba commit f9c7312

3 files changed

Lines changed: 13 additions & 14 deletions

File tree

Shuttle.Access.Vue/.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VUE_APP_URL=http://localhost:5599/api/
1+
VUE_APP_URL=https://shuttle-access.azurewebsites.net/api/
22
VUE_APP_ENVIRONMENT=production
33
VUE_APP_I18N_LOCALE=en
44
VUE_APP_I18N_FALLBACK_LOCALE=en

Shuttle.Access.Vue/vue.config.js

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
module.exports = {
2-
pluginOptions: {
3-
i18n: {
4-
locale: 'en',
5-
fallbackLocale: 'en',
6-
localeDir: 'locales',
7-
enableInSFC: true
8-
}
2+
productionSourceMap: false,
3+
pluginOptions: {
4+
i18n: {
5+
locale: 'en',
6+
fallbackLocale: 'en',
7+
localeDir: 'locales',
8+
enableInSFC: true
99
}
10-
}
10+
}
11+
}

Shuttle.Access.WebApi/web.config

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
3-
43
<!-- To customize the asp.net core module uncomment and edit the following section.
54
For more info see https://go.microsoft.com/fwlink/?linkid=838655 -->
65
<system.webServer>
76
<handlers>
8-
<remove name="aspNetCore"/>
9-
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified"/>
7+
<remove name="aspNetCore" />
8+
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" />
109
</handlers>
11-
<aspNetCore processPath="dotnet" arguments=".\Shuttle.Access.WebApi.dll" stdoutLogEnabled="true" stdoutLogFile=".\logs\stdout" hostingModel="outofprocess" />
10+
<aspNetCore processPath="dotnet" arguments=".\Shuttle.Access.WebApi.dll" stdoutLogEnabled="true" stdoutLogFile=".\logs\stdout" hostingModel="InProcess" />
1211
</system.webServer>
13-
1412
</configuration>

0 commit comments

Comments
 (0)