mirror of
https://github.com/hay-kot/mealie.git
synced 2025-08-22 14:33:33 -07:00
fix static path
This commit is contained in:
parent
a7d09adeb3
commit
69c5aada04
2 changed files with 9 additions and 9 deletions
|
@ -35,7 +35,7 @@ COPY --from=build-stage /app/dist /app/dist
|
||||||
RUN rm -rf /app/test /app/.temp
|
RUN rm -rf /app/test /app/.temp
|
||||||
|
|
||||||
VOLUME [ "/app/data/" ]
|
VOLUME [ "/app/data/" ]
|
||||||
RUN chmod +x run.sh
|
RUN chmod +x /app/run.sh
|
||||||
CMD script.sh
|
CMD /app/run.sh
|
||||||
|
|
||||||
# CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "80"]
|
# CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "80"]
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
module.exports = {
|
module.exports = {
|
||||||
transpileDependencies: ["vuetify"],
|
transpileDependencies: ["vuetify"],
|
||||||
publicPath: process.env.NODE_ENV === "production" ? "/static/" : "/",
|
publicPath: process.env.NODE_ENV === "production" ? "/" : "/",
|
||||||
outputDir: process.env.NODE_ENV === "production" ? "./dist" : "../mealie/web",
|
outputDir: process.env.NODE_ENV === "production" ? "./dist" : "../mealie/web",
|
||||||
devServer: {
|
devServer: {
|
||||||
proxy: {
|
proxy: {
|
||||||
|
@ -12,10 +12,10 @@ module.exports = {
|
||||||
},
|
},
|
||||||
pluginOptions: {
|
pluginOptions: {
|
||||||
i18n: {
|
i18n: {
|
||||||
locale: 'en',
|
locale: "en",
|
||||||
fallbackLocale: 'en',
|
fallbackLocale: "en",
|
||||||
localeDir: 'locales',
|
localeDir: "locales",
|
||||||
enableInSFC: true
|
enableInSFC: true,
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue