File tree 3 files changed +7
-1
lines changed
3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ APP_NAME=Qaravel
2
2
APP_ENV = local
3
3
APP_KEY = base64:2UkK1HvAMdBAHUfIZOQX8xTRc7v6Ik6I+FGcYKdlmpg=
4
4
APP_DEBUG = true
5
- APP_URL = http://localhost
5
+ APP_URL = http://qaravel.gomedia
6
6
SANCTUM_STATEFUL_DOMAINS = qaravel.gomedia:8080
7
7
8
8
LOG_CHANNEL = stack
File renamed without changes.
Original file line number Diff line number Diff line change @@ -67,6 +67,8 @@ module.exports = function (ctx) {
67
67
// Options below are automatically set depending on the env, set them if you want to override
68
68
// extractCSS: false,
69
69
70
+ ignorePublicFolder : true ,
71
+
70
72
// https://quasar.dev/quasar-cli/handling-webpack
71
73
extendWebpack ( cfg ) {
72
74
cfg . module . rules . push ( {
@@ -75,6 +77,10 @@ module.exports = function (ctx) {
75
77
loader : 'eslint-loader' ,
76
78
exclude : / n o d e _ m o d u l e s /
77
79
} )
80
+ } ,
81
+ chainWebpack ( chain ) {
82
+ // chain.output.publicPath = '/statics/'
83
+ // console.log('chain.output.publicPath', chain.output.publicPath())
78
84
}
79
85
} ,
80
86
You can’t perform that action at this time.
0 commit comments