mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-23 20:18:00 +01:00
fix vite on external devices
This commit is contained in:
parent
885af36339
commit
90b4ee8915
2 changed files with 6 additions and 2 deletions
|
@ -28,6 +28,10 @@ export default defineConfig(({ command, mode }: ConfigEnv): UserConfig => {
|
|||
return {
|
||||
publicDir: 'static',
|
||||
plugins: [],
|
||||
server: {
|
||||
host: '0.0.0.0',
|
||||
port: 5173,
|
||||
},
|
||||
resolve: {
|
||||
alias: {
|
||||
common: path.resolve(__dirname, 'css/common/'),
|
||||
|
|
|
@ -24,8 +24,8 @@ html lang="en"
|
|||
= csrf_meta_tag()
|
||||
|
||||
= vite_hmr? do
|
||||
script type="module" src="http://localhost:5173/@vite/client"
|
||||
script type="module" src="http://localhost:5173/js/app.ts"
|
||||
script type="module" src="http://#{@conn.host}:5173/@vite/client"
|
||||
script type="module" src="http://#{@conn.host}:5173/js/app.ts"
|
||||
- else
|
||||
script type="text/javascript" src=~p"/js/app.js" async="async"
|
||||
= render PhilomenaWeb.LayoutView, "_opengraph.html", assigns
|
||||
|
|
Loading…
Reference in a new issue