We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf8ca93 commit 3774dcfCopy full SHA for 3774dcf
packages/webui/vite.config.mts
@@ -32,7 +32,8 @@ export default defineConfig({
32
33
optimizeDeps: {
34
include: [
35
- ...commonJsPaths,
+ // Add all sofie paths, ensuring they use unix path syntax
36
+ ...commonJsPaths.map((p) => p.replaceAll('\\', '/')),
37
38
// Commonjs monorepo dependencies
39
'@sofie-automation/blueprints-integration',
@@ -56,9 +57,9 @@ export default defineConfig({
56
57
58
server: {
59
proxy: {
- '/api': 'http://localhost:3000',
60
- '/site.webmanifest': 'http://localhost:3000',
61
- '/meteor-runtime-config.js': 'http://localhost:3000',
+ '/api': 'http://127.0.0.1:3000',
+ '/site.webmanifest': 'http://127.0.0.1:3000',
62
+ '/meteor-runtime-config.js': 'http://127.0.0.1:3000',
63
},
64
65
0 commit comments