Skip to content

Commit 318586a

Browse files
committed
remove public assets
1 parent a4060df commit 318586a

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

.env.example

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ APP_NAME=Qaravel
22
APP_ENV=local
33
APP_KEY=base64:2UkK1HvAMdBAHUfIZOQX8xTRc7v6Ik6I+FGcYKdlmpg=
44
APP_DEBUG=true
5-
APP_URL=http://localhost
5+
APP_URL=http://qaravel.gomedia
66
SANCTUM_STATEFUL_DOMAINS=qaravel.gomedia:8080
77

88
LOG_CHANNEL=stack
File renamed without changes.

quasar.conf.js

+6
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,8 @@ module.exports = function (ctx) {
6767
// Options below are automatically set depending on the env, set them if you want to override
6868
// extractCSS: false,
6969

70+
ignorePublicFolder: true,
71+
7072
// https://quasar.dev/quasar-cli/handling-webpack
7173
extendWebpack (cfg) {
7274
cfg.module.rules.push({
@@ -75,6 +77,10 @@ module.exports = function (ctx) {
7577
loader: 'eslint-loader',
7678
exclude: /node_modules/
7779
})
80+
},
81+
chainWebpack (chain) {
82+
// chain.output.publicPath = '/statics/'
83+
// console.log('chain.output.publicPath', chain.output.publicPath())
7884
}
7985
},
8086

0 commit comments

Comments
 (0)